I have not been receiving tv episode stills lately. The values returns but it is always an empty array. Did I miss an announcement or change?
Не можеш да нађеш филм или серију? Пријави се да додаш.
Желите ли да оцените или додате ову ставку у листу?
Нисте члан?
Одговор од ticao2 🇧🇷 pt-BR
дана 05. јануар 2024. у 8:11 PM
Hmmm
I tested your URL and I think I got the images in the end.
https://api.themoviedb.org/3/tv/91363/season/1/episode/2?api_key=THE_KEY&append_to_response=credits,videos,images
Одговор од Hamilton Cline
дана 06. јануар 2024. у 1:21 PM
That shows a still path, but the stills array is empty.
Одговор од ticao2 🇧🇷 pt-BR
дана 07. јануар 2024. у 12:22 AM
Sorry, English is not my native language.
I don't understand what you mean.
For me both images are available.
https://image.tmdb.org/t/p/original/urF7o2y7sG6GB53R0krSk9krw0E.jpg
https://image.tmdb.org/t/p/original/nYi8xASA30NvnohsEbSikjp0SXj.jpg
Одговор од Hamilton Cline
дана 08. јануар 2024. у 2:14 AM
Well... that's bad, because the array is empty on my site using my api_key. Is there possibly something i'm doing wrong? https://filmswith.com/tv/91363/1/2
Одговор од ticao2 🇧🇷 pt-BR
дана 08. јануар 2024. у 9:26 PM
Now I understand.
You are talking about the still array of your page on your website.
You're not talking about the still array from the JASON page response from the TMDb API server.
Since you posted your API Request, I imagined you had tested it in a tab in your browser.
But he didn't test it.
Well, if you test it you will see that the information is there.
https://api.themoviedb.org/3/tv/91363/season/1/episode/2?api_key=THE_KEY&append_to_response=credits,videos,images
Yes, something is certainly wrong.
Does this problem occur with all films and series or just with this one in your example specifically?
Did you develop the code for your page or is it a third-party plugin/template?
Одговор од Hamilton Cline
дана 09. јануар 2024. у 5:00 PM
So I think I've narrowed it down.
The full url i'm calling is:
https://api.themoviedb.org/3/tv/91363/season/1/episode/2?api_key=API_KEY&language=en-US&include_adult=false&append_to_response=credits,videos,images
It appears that it is language=en-US that is the problem.
If this is included the api only returns an empty array.
Am I doing that wrong, or has that changed?
[edit] Also this seems to affect all shows. Not just this one.
Одговор од ticao2 🇧🇷 pt-BR
дана 10. јануар 2024. у 3:50 PM
See the NOTE on this page.
https://developer.themoviedb.org/reference/tv-series-images
That is, using the "&append_to_response=images" resource:
If you do not specify/use the "&language=" filter
then text information will be provided in the default language,
and images will be provided either all, all languages and/or no language (null).
But...
If you specify/use the "&language=" filter with the "&append_to_response=images" resource
then you must also specify the languages of the images you want using "&include_image_language="
For example
&include_image_language=null,pt,en,fr
In this case, use null for no language, normally backdrops do not have a language, and more Portuguese, English and French.
Separating with a comma all come from these languages.
You can add other languages you want.