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.)
Es fehlt ein Film oder eine Serie? Logge dich ein zum Ergänzen.
Diesen Eintrag bewerten oder zu einer Liste hinzufügen?
Kein Mitglied?
Antwort von ticao2 🇧🇷 pt-BR
am 9. Oktober 2024 um 16:16
The region parameter must be in uppercase letters.
It complies with ISO 3166-1
In your case US.
Antwort von Ellis
am 10. Oktober 2024 um 04:42
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:
Antwort von ticao2 🇧🇷 pt-BR
am 10. Oktober 2024 um 11:34
:-)
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.
Antwort von Ellis
am 11. Oktober 2024 um 02:57
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.
Antwort von ticao2 🇧🇷 pt-BR
am 11. Oktober 2024 um 06:28
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?
Antwort von Ellis
am 12. Oktober 2024 um 07:33
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
Antwort von ticao2 🇧🇷 pt-BR
am 13. Oktober 2024 um 19:18
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.
Antwort von Ellis
am 16. Oktober 2024 um 03:24
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.
Antwort von ticao2 🇧🇷 pt-BR
am 16. Oktober 2024 um 09:45
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
Antwort von Ellis
am 19. Oktober 2024 um 02:48
Ahh, that adds some clarity. Cheers!