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.
Non riesci a trovare un film o una serie Tv? Accedi per crearlo.
Vuoi valutare o aggiungere quest'elemento a una lista?
Non sei un membro?
Risposta da ticao2 π§π· pt-BR
il 27 dicembre, 2024 alle 3:40PM
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.
Risposta da dbom009
il 27 dicembre, 2024 alle 3:45PM
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.
Risposta da ticao2 π§π· pt-BR
il 27 dicembre, 2024 alle 3:52PM
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.
Risposta da dbom009
il 27 dicembre, 2024 alle 3:57PM
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]
Risposta da ticao2 π§π· pt-BR
il 27 dicembre, 2024 alle 4:07PM
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=
Risposta da dbom009
il 27 dicembre, 2024 alle 4:12PM
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]
Risposta da dbom009
il 27 dicembre, 2024 alle 4:17PM
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..
Risposta da dbom009
il 27 dicembre, 2024 alle 4:19PM
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.
Risposta da ticao2 π§π· pt-BR
il 27 dicembre, 2024 alle 4:19PM
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.
Risposta da dbom009
il 27 dicembre, 2024 alle 4:27PM
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.."
Risposta da ticao2 π§π· pt-BR
il 27 dicembre, 2024 alle 4:34PM
If no other parameters are specified, only region is specified, the response will be the same.
Risposta da dbom009
il 27 dicembre, 2024 alle 4:36PM
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.
Risposta da ticao2 π§π· pt-BR
il 27 dicembre, 2024 alle 4:43PM
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
Risposta da dbom009
il 27 dicembre, 2024 alle 4:49PM
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.
Risposta da ticao2 π§π· pt-BR
il 27 dicembre, 2024 alle 4:53PM
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.