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אחרי חצות יום
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אחרי חצות יום
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לפני חצות יום
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אחרי חצות יום
Its now working :) Thanks a lot for your support and this great api ! :)
תגובה מאת Travis Bell
ב-מרץ 22, 2017 ב-10:36לפני חצות יום
Happy to hear that! Thanks!