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.
No trobeu una pel·lícula o una sèrie? Inicieu la sessió per a crear-la.
Desitgeu valorar o afegir aquest element a una llista?
No en sou membre?
Resposta per Travis Bell
el 16 l de 2017 a les 1:42 P.M.
Region is case sensitive, you'll want to use this:
You'll see the
release_date
values update with the proper uppercase parameter.Cheers.
Resposta per chris.mayr22
el 16 l de 2017 a les 3:09 P.M.
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.
Resposta per Travis Bell
el 18 l de 2017 a les 11:28 A.M.
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.
Resposta per chris.mayr22
el 21 l de 2017 a les 4:02 P.M.
Its now working :) Thanks a lot for your support and this great api ! :)
Resposta per Travis Bell
el 22 l de 2017 a les 10:36 A.M.
Happy to hear that! Thanks!