Using the "release_date.gte" parameter doesn't modify the results as expected. You can test this yourself outside of the API by going to the popular movies tab on TMDB, putting in a minimum year, and then sorting by Release Date Ascending, you'll see movies from 1900's instead of movies of only year 2000 and beyond. Using the network tab on your browser's inspector, you can see that the release_date.gte parameter is being sent, but the results aren't being filtered correctly.
¿No encuentras una película o serie? Inicia sesión para crearla:
¿Quieres puntuar o añadir este elemento a una lista?
¿No eres miembro?
Contestado por Travis Bell
el 30 de julio de 2023 a las 11:37
If you use the
release_date.gte
filter you will want to also make sure you are using theregion
filter. Without it, you’re searching all release dates in all countries and you’ll see on those items they have release dates for things like re-releases or physical dates etc.The alternative option is to use
primary_release_date.gte
. This filter will only filter by the single primary date.Contestado por LeoIndu
el 29 de diciembre de 2023 a las 03:06
we cant retrieve from keywords.. actually entire advance filtering doesnt work.. sends the same results
Contestado por Travis Bell
el 29 de diciembre de 2023 a las 03:13
@LeoIndu Please create a new thread detailing your question. Your problem has nothing to do with this one.