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 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 ticao2 馃嚙馃嚪 pt-BR
el 27 " de 2024 a les 3:40 P.M.
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.
Resposta per dbom009
el 27 " de 2024 a les 3:45 P.M.
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.
Resposta per ticao2 馃嚙馃嚪 pt-BR
el 27 " de 2024 a les 3:52 P.M.
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.
Resposta per dbom009
el 27 " de 2024 a les 3:57 P.M.
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]
Resposta per ticao2 馃嚙馃嚪 pt-BR
el 27 " de 2024 a les 4:07 P.M.
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=
Resposta per dbom009
el 27 " de 2024 a les 4:12 P.M.
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]
Resposta per dbom009
el 27 " de 2024 a les 4:17 P.M.
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..
Resposta per dbom009
el 27 " de 2024 a les 4:19 P.M.
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.
Resposta per ticao2 馃嚙馃嚪 pt-BR
el 27 " de 2024 a les 4:19 P.M.
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.
Resposta per dbom009
el 27 " de 2024 a les 4:27 P.M.
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.."
Resposta per ticao2 馃嚙馃嚪 pt-BR
el 27 " de 2024 a les 4:34 P.M.
If no other parameters are specified, only region is specified, the response will be the same.
Resposta per dbom009
el 27 " de 2024 a les 4:36 P.M.
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.
Resposta per ticao2 馃嚙馃嚪 pt-BR
el 27 " de 2024 a les 4:43 P.M.
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
Resposta per dbom009
el 27 " de 2024 a les 4:49 P.M.
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.
Resposta per ticao2 馃嚙馃嚪 pt-BR
el 27 " de 2024 a les 4:53 P.M.
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.