Hi,
I have a little problem. So the region parameter is awesome ! So I use request like https://api.themoviedb.org/3/movie/upcoming?api_key=???&language=de&page=1®ion=de and get the movies that are upcoming in Germany. The list seems to have the right data. However it knows that some movies are upcoming in Germany, but on the other side it gives me release dates that are in the past, even with the region parameter.
Не можеш да нађеш филм или серију? Пријави се да додаш.
Желите ли да оцените или додате ову ставку у листу?
Нисте члан?
Одговор од Travis Bell
дана 16. март 2017. у 1:42 PM
Region is case sensitive, you'll want to use this:
You'll see the
release_date
values update with the proper uppercase parameter.Cheers.
Одговор од chris.mayr22
дана 16. март 2017. у 3:09 PM
Ah ok I see, thank you :) Region is not possible for the movie details, right ? So this https://api.themoviedb.org/3/movie/331313?api_key=###&language=de®ion=DE still returns the US region release date.
Одговор од Travis Bell
дана 18. март 2017. у 11:28 AM
Correct but that's because it's trivial to call /release_dates with
append_to_response
. You can then filter the data locally however you like.Cheers.
Одговор од chris.mayr22
дана 21. март 2017. у 4:02 PM
Its now working :) Thanks a lot for your support and this great api ! :)
Одговор од Travis Bell
дана 22. март 2017. у 10:36 AM
Happy to hear that! Thanks!