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 的回复
于 2017 年 03 月 16 日 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 的回复
于 2017 年 03 月 16 日 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 的回复
于 2017 年 03 月 18 日 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 的回复
于 2017 年 03 月 21 日 4:02下午
Its now working :) Thanks a lot for your support and this great api ! :)
Travis Bell 的回复
于 2017 年 03 月 22 日 10:36上午
Happy to hear that! Thanks!