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.
Fılmdi nemese kórsetimdi taba almadyńyz ba? Ony jasaý úshin kirińiz.
Want to rate or add this item to a list?
Not a member?
ticao2 🇧🇷 pt-BR jaýaby
2024 Jeltoqsan 27 kúni 3:40 PM ýaqytynda
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.
dbom009 jaýaby
2024 Jeltoqsan 27 kúni 3:45 PM ýaqytynda
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.
ticao2 🇧🇷 pt-BR jaýaby
2024 Jeltoqsan 27 kúni 3:52 PM ýaqytynda
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.
dbom009 jaýaby
2024 Jeltoqsan 27 kúni 3:57 PM ýaqytynda
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]
ticao2 🇧🇷 pt-BR jaýaby
2024 Jeltoqsan 27 kúni 4:07 PM ýaqytynda
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=
dbom009 jaýaby
2024 Jeltoqsan 27 kúni 4:12 PM ýaqytynda
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]
dbom009 jaýaby
2024 Jeltoqsan 27 kúni 4:17 PM ýaqytynda
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..
dbom009 jaýaby
2024 Jeltoqsan 27 kúni 4:19 PM ýaqytynda
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.
ticao2 🇧🇷 pt-BR jaýaby
2024 Jeltoqsan 27 kúni 4:19 PM ýaqytynda
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.
dbom009 jaýaby
2024 Jeltoqsan 27 kúni 4:27 PM ýaqytynda
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.."
ticao2 🇧🇷 pt-BR jaýaby
2024 Jeltoqsan 27 kúni 4:34 PM ýaqytynda
If no other parameters are specified, only region is specified, the response will be the same.
dbom009 jaýaby
2024 Jeltoqsan 27 kúni 4:36 PM ýaqytynda
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.
ticao2 🇧🇷 pt-BR jaýaby
2024 Jeltoqsan 27 kúni 4:43 PM ýaqytynda
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
dbom009 jaýaby
2024 Jeltoqsan 27 kúni 4:49 PM ýaqytynda
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.
ticao2 🇧🇷 pt-BR jaýaby
2024 Jeltoqsan 27 kúni 4:53 PM ýaqytynda
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.