Hey there, I've been using the TMDB movie api for a bit now and I think I've found a bug Whenever I do this request: https://api.themoviedb.org/3/discover/movie?api_key=myKey&release_date.gte=2004-01-01&release_date.lte=2004-12-31&sort_by=popularity.desc It shows movies way outside this range, is this a mistake on my end?
Nemůžete nalézt film nebo seriál? Přihlaste se pro jeho vytvoření.
Want to rate or add this item to a list?
Not a member?
Odpověď od superboy97
25.11.2024 v 1:25 ODP.
Can you give us an example of such a movie ?
Don't forget that it will take in account all the release dates listed for a movie. As long as one of them match your criteria, the movie will be returned.
Odpověď od RegularRobin
25.11.2024 v 1:35 ODP.
Ah I see, I forgot about that. I got confused because it has some movies like Alien and Toy Story but in the case of Alien it's the directors cut. I didn't realise I could use the release types, sorry!
Odpověď od superboy97
25.11.2024 v 1:42 ODP.
You also have the possibility to check the primary release date.
Odpověď od Travis Bell
25.11.2024 v 2:12 ODP.
with_release_type
andregion
are your friends if you want to userelease_date.xxx
. Otherwise, switch toprimary_release_date.xxx
.Odpověď od RegularRobin
25.11.2024 v 2:14 ODP.
Thanks for the tips guys! Much appreciated