Is anyone else regions not working for the Discover Movie Endpoint. I am getting the same results for every country I put in.
The Discover TV appears to still be fine.
¿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 ticao2 🇧🇷 pt-BR
el 27 de diciembre de 2024 a las 15:40
You need to give more details about the problem.
Problems with API Request
In order for someone to help you with API Request questions,
it is critical that you post here the API Request you are sending to the TMDb server.
Remember to replace your Key with MY_KEY , YOUR_KEY , THE_KEY , or something like that.
Not the programming code/script you used to build the API Request.
But the API Request that is sent to the TMDb server.
Or the API Request you would like to send.
Contestado por dbom009
el 27 de diciembre de 2024 a las 15:45
Hi @ticao2 ,
Thanks for checking in. It appears that the Discover Movie Endpoint is not factoring in the region. I have an application that has been live for a couple years. I do not adjust it often. I went to take a look and it is appearing that when you change the region in the Discover endpoint, sorted my most popular the results dont change.
You can check this yourself from the API docs by swapping out the regions. All of the results are the same with is either a freak coincidence or something may be wrong.
Contestado por ticao2 🇧🇷 pt-BR
el 27 de diciembre de 2024 a las 15:52
It depends on which API Request you are talking about.
For example, if it is for Popularity, the region does not interfere.
Popularity is not a regional parameter.
That is why I asked you to post here which API Request you are making.
Contestado por dbom009
el 27 de diciembre de 2024 a las 15:57
No problem. This is the API Call.
https://api.themoviedb.org/3/discover/movie?api_key=[api]&with_genres=[genres]&with_watch_providers=[providers]&watch_region=[region]&sort_by=[sort]&without_genres=[without_genres]&primary_release_date.gte=[year_greater_than]&primary_release_date.lte=[year_less_than]&with_runtime.lte=[runtime_less_than]&with_runtime.gte=[runtime_greater_than]&page=[page]&with_origin_country=[country]&vote_average.gte=[rating_min]&vote_average.lte=[rating_max]&language=[language]&vote_count.gte=[vote_count.gte]&with_keywords=[keywords]
Contestado por ticao2 🇧🇷 pt-BR
el 27 de diciembre de 2024 a las 16:07
Maybe the problem is here:
For primary_release_date use a Date (2024-12-01 or YYYY-MM-DD) and not a Year.
To restrict to a single country use &release_date.gte= and &release_date.lte=
Contestado por dbom009
el 27 de diciembre de 2024 a las 16:12
This has been working fine for years. Those dates are actually empty on the calls that are being made. Did something change on this? I will give it a shot either way.
I have the /Discover/TV endpoint the same and it works totally fine.
https://api.themoviedb.org/3/discover/tv?api_key=[api]&with_genres=[genres]&with_watch_providers=[providers]&watch_region=[region]&sort_by=[sort]&without_genres=[without_genres]&air_date.gte=[year_greater_than]&air_date.lte=[year_less_than]&with_runtime.lte=[runtime_less_than]&with_runtime.gte=[runtime_greater_than]&page=[page]&vote_average.gte=[rating_min]&vote_average.lte=[rating_max]&with_origin_country=[country]&language=[language]&vote_count.gte=[vote_count.gte]&with_keywords=[keywords]
Contestado por dbom009
el 27 de diciembre de 2024 a las 16:17
If you use the Try This here https://developer.themoviedb.org/reference/discover-movie and swap out the regions and then hit "Try This", none of the movies change.
Even if you leave everything else the same..
Contestado por dbom009
el 27 de diciembre de 2024 a las 16:19
Maybe it just happens all of the movies are the same popularity at the moment but since I have been using it, it has never occurred this way to me. Will check back.
Contestado por ticao2 🇧🇷 pt-BR
el 27 de diciembre de 2024 a las 16:19
TV usually only has a worldwide premiere date.
There is no regional premiere date.
As for movies, you need to provide the API Request with the parameters that are being used.
Not a possible model.
But what is actually sent to the server.
Contestado por dbom009
el 27 de diciembre de 2024 a las 16:27
I understand. Can you take a look at it here.
"If you use the Try This here https://developer.themoviedb.org/reference/discover-movie and swap out the regions and then hit "Try This", none of the movies change.
Even if you leave everything else the same.."
Contestado por ticao2 🇧🇷 pt-BR
el 27 de diciembre de 2024 a las 16:34
If no other parameters are specified, only region is specified, the response will be the same.
Contestado por dbom009
el 27 de diciembre de 2024 a las 16:36
Thank you. So you are saying that some of the parameters need to be adjusted. Or the popularity is always the same for every region. Even if that region doesn't even have the ability to watch that specific movie, based on the available providers..
Like I said, this was working fine up until I checked today. It would swap between regions. Now it just shows the same.
Contestado por ticao2 🇧🇷 pt-BR
el 27 de diciembre de 2024 a las 16:43
The Popularity Ranking stored in the Database is Worldwide.
What you can filter, restrict, is only what premiered in a specific country.
To do this you need to specify region= and release_date=.
And if it is for a specific country in a streaming service you need:
watch_region use in conjunction with with_watch_monetization_types or with_watch_providers
Contestado por dbom009
el 27 de diciembre de 2024 a las 16:49
Thank you for your time. I appreciate you looking into this. I do use watch_region and a user can decide to add in a watch provider or not. It appears that when there are no watch providers selected this filter no longer factors in the watch_region.
This used to do so as of a week or two ago and I guess it is just different now. The /discover/TV does work like that.
Contestado por ticao2 🇧🇷 pt-BR
el 27 de diciembre de 2024 a las 16:53
Nothing has changed since the beginning.
These instructions are in the DOCs.
See watch_region string
https://developer.themoviedb.org/reference/discover-movie
TV and Movies work differently.