I know that if I want the shows that have started on a specific year, I should use first_air_date_year.
But as I see, year parameter seem has bug, it has no effect as my title said: "Year parameter has no effect in https://api.themoviedb.org/3/search/tv"
Somewhere along the way, year searches got mapped to first_air_date_year internally. A year search is supposed to mimic the behaviour on discover, which is to search all episode air dates. This has been corrected.
A valid year query is any number larger than 1000, and smaller than 9999. Using 1000 as a test value would be equivalent as not entering one at all.
The fix for the first issue has been deployed, and you'll now see searches like this working correctly:
Resposta de ntrnghia
no 22 de xaneiro do 2024 ás 10:34PM
Why my discussion close?
Resposta de superboy97
no 23 de xaneiro do 2024 ás 12:01AM
If you want help about a query, you need to provide the complete query you have sent as well as the supposed wrong answer you have got.
Resposta de ntrnghia
no 23 de xaneiro do 2024 ás 12:19AM
So "https://api.themoviedb.org/3/search/tv?query=My%20boss&include_adult=false&language=en-US&page=1&year=2024" give the same results as "https://api.themoviedb.org/3/search/tv?query=My%20boss&include_adult=false&language=en-US&page=1&year=2020", and the results contain dramas in any year.
Resposta de superboy97
no 23 de xaneiro do 2024 ás 12:46AM
With this query, you will get all shows that are still in progress in the indicated year.
If you want the shows that have started on a specif year, you should use "first_air_date_year" instead of "year".
Resposta de ntrnghia
no 23 de xaneiro do 2024 ás 1:04AM
Even if I use "year=1000", I still get the same results.
Resposta de superboy97
no 23 de xaneiro do 2024 ás 1:11AM
As long as you didn't give us the exact answer you got, as asked above, we can't answer you precisely.
Resposta de ntrnghia
no 23 de xaneiro do 2024 ás 1:15AM
"https://api.themoviedb.org/3/search/tv?query=My%20boss&include_adult=false&language=en-US&page=1&year=1000" still give me the same results with any year. No drama in the list still in progress in year 1000.
Resposta de Travis Bell
no 23 de xaneiro do 2024 ás 1:18AM
Resposta de ntrnghia
no 23 de xaneiro do 2024 ás 1:20AM
I know that if I want the shows that have started on a specific year, I should use first_air_date_year. But as I see, year parameter seem has bug, it has no effect as my title said: "Year parameter has no effect in https://api.themoviedb.org/3/search/tv"
Resposta de Travis Bell
no 24 de xaneiro do 2024 ás 3:11PM
There was a few things that went wrong here:
year
searches got mapped tofirst_air_date_year
internally. Ayear
search is supposed to mimic the behaviour on discover, which is to search all episode air dates. This has been corrected.The fix for the first issue has been deployed, and you'll now see searches like this working correctly:
But please note, a lot of these pages are cached so you will have to wait up to ~8 hours for everything to purge.
Resposta de ntrnghia
no 24 de xaneiro do 2024 ás 4:49PM
I see it works now.
So to summarize:
Resposta de Travis Bell
no 24 de xaneiro do 2024 ás 4:57PM
No. It's extracted from all of the episode air dates.
first_air_date_year
is extracted from the s1e1 air date, ie. when it premiered.No.
year
is extracted from every release date.primary_release_year
would be what to use if all you want to look at is the primary release date.Resposta de superboy97
no 24 de xaneiro do 2024 ás 4:57PM
To summarize:
Resposta de ntrnghia
no 24 de xaneiro do 2024 ás 6:50PM
Thank you guys, I totally understand now. Thanks for support.