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?
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 superboy97
el 25 r de 2024 a les 1:25 P.M.
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.
Resposta per RegularRobin
el 25 r de 2024 a les 1:35 P.M.
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!
Resposta per superboy97
el 25 r de 2024 a les 1:42 P.M.
You also have the possibility to check the primary release date.
Resposta per Travis Bell
el 25 r de 2024 a les 2:12 P.M.
with_release_type
andregion
are your friends if you want to userelease_date.xxx
. Otherwise, switch toprimary_release_date.xxx
.Resposta per RegularRobin
el 25 r de 2024 a les 2:14 P.M.
Thanks for the tips guys! Much appreciated