I'm struggling with getting results for regional release dates. (I don't get any.)
When searching region (US) without a date, I get results.
url = "https://api.themoviedb.org/3/discover/movie?include_adult=false&include_video=false&language=en-US&page=1®ion=us&sort_by=popularity.desc&with_release_type=3&with_runtime.gte=60"
{
"page": 1,
"results": [
{
[REDACTED for brevity]
"original_title": "Deadpool & Wolverine",
"overview": "A listless Wade Wilson toils away in civilian life with his days as the morally flexible mercenary, Deadpool, behind him. But when his homeworld faces an existential threat, Wade must reluctantly suit-up again with an even more reluctant Wolverine.",
"popularity": 3546.58,
"poster_path": "/8cdWjvZQUExUUTzyp4t6EDMubfO.jpg",
**"release_date": "2024-07-24",**
"title": "Deadpool & Wolverine",
"video": false,
[REDACTED for brevity]
},
But when I search for region + release date, I get nothing.
url = "https://api.themoviedb.org/3/discover/movie?include_adult=false&include_video=false&language=en-US&page=1®ion=us&release_date.gte=2024-07-24&release_date.lte=2024-07-24&sort_by=popularity.desc&with_release_type=3&with_runtime.gte=60"
{
"page": 1,
"results": [],
"total_pages": 1,
"total_results": 0
}
I've tried iterating a date (ex: May 1st) over every year since 1939 and get zero results.
The same function returns 270+ results for primary_release_date.gte/lte (with and without region) and 475+ results for release_date.gte/lte with no region.
But combining region + release date always returns 0 results. (And it doesn't matter whether I'm using my code or the TMDB widget here.)
Nu găsiți un film sau un serial? Autentificați-vă pentru a-l crea.
Doriți să evaluați sau să adăugați acest articol într-o listă?
Nu sunteți membru?
Răspuns de ticao2 🇧🇷 pt-BR
pe data de 9 octombrie 2024 la ora 4:16 PM
The region parameter must be in uppercase letters.
It complies with ISO 3166-1
In your case US.
Răspuns de Ellis
pe data de 10 octombrie 2024 la ora 4:42 AM
Man, I could swear that I tried that yesterday because I actually checked that when I was troubleshooting. But I just uppercased my
"region": "US",
and lo & behold I get a list of movies.Thank you so much!
But I'd like to note that the URL generated in the TMDB widget populates a lowercase region code. It should not do that as it's an example of how to use the API. Granted, basic problem-solving should have led me to try "US" (and I thought I did) I wasted hours battling that empty results list to no avail, all because I was following the example in the widget.
This is the sample code in TMDB's web widget:
Răspuns de ticao2 🇧🇷 pt-BR
pe data de 10 octombrie 2024 la ora 11:34 AM
:-)
Hmm...
The field to specify Region does not have an example.
If you enter it in lowercase, the system does not change it to Uppercase.
It needs to be entered in Uppercase by the user.
I only see an example in Language. And it is correctly en-US.
Răspuns de Ellis
pe data de 11 octombrie 2024 la ora 2:57 AM
Are you on this page: https://developer.themoviedb.org/reference/discover-movie? The field to specify region is there. It is between primary_release_date.lte and release_date.gte
And it's also in the code I shared above:
&language=en-US&page=1&**region=us**&sort_by=popularity.desc
The widget doesn't change lowercase to uppercase, but it still returns results in the response box with its code showing a lowercase region, which is what led me to think that lowercase should work. Anyway, it's not an issue for me now, I just think it's not a great way to provide an example.
Răspuns de ticao2 🇧🇷 pt-BR
pe data de 11 octombrie 2024 la ora 6:28 AM
Yes, that's the one.
My browser doesn't show any examples in this field.
https://imgur.com/a/lu69Axc
https://imgur.com/6EY9JQY
What operating system and browser are you using?
Răspuns de Ellis
pe data de 12 octombrie 2024 la ora 7:33 AM
I don't mean that there's a placeholder example in the list of query parameters. I'm referring to the example code that the widget populates. https://imgur.com/a/hg3YP1V
Răspuns de ticao2 🇧🇷 pt-BR
pe data de 13 octombrie 2024 la ora 7:18 PM
I'm not sure I understand.
In the field you type US, in capital letters, and the widget populate it with us, in lowercase?
Well, that doesn't happen in my browser.
If I use US in capital letters, the widget populate in uppercase.
If I use us in lowercase, the widget populate in lowercase.
It seems that the widget behaves differently for me than it does for you.
Răspuns de Ellis
pe data de 16 octombrie 2024 la ora 3:24 AM
We're seeing the same thing. (I type us and the widget populates the URL in lowercase.) I'm simply saying that it delivers a response. That's my point. It should return nothing, otherwise the implication is that lowercase is acceptable.
Răspuns de ticao2 🇧🇷 pt-BR
pe data de 16 octombrie 2024 la ora 9:45 AM
Now I understand.
The system should correct from lowercase to uppercase or it should not accept lowercase and report an error perhaps.
I don't know if this service that TMDb uses, Readme, has this feature.
https://readme.com
Răspuns de Ellis
pe data de 19 octombrie 2024 la ora 2:48 AM
Ahh, that adds some clarity. Cheers!