I am trying to load movie image on click but unable to do so. here is the id I have use
https://image.tmdb.org/t/p/w500/${data?.poster_path}
I have checked, the logic of {data?.poster_path}
is correct so what's the issue?
Un film, une émission télévisée ou un artiste est introuvable ? Connectez-vous afin de créer une nouvelle fiche.
Vous souhaitez évaluer ou ajouter cet élément à une liste ?
Pas encore membre ?
Réponse de Ajinkya Bhoite
le 28 juillet 2024 Ă 19h43
Here is the error I am getting,
Image size not supported
Réponse de ticao2 🇧🇷 pt-BR
le 29 juillet 2024 Ă 12h07
The possible supported image sizes are specified here.
https://developer.themoviedb.org/reference/configuration-details
Your example shows the size w500.
What is causing the error is some other value in the URL, probably the value for {data?.poster_path}.
Note that the example below works correctly in your browser.
https://image.tmdb.org/t/p/w500/nP6RliHjxsz4irTKsxe8FRhKZYl.jpg
https://image.tmdb.org/t/p/original/nP6RliHjxsz4irTKsxe8FRhKZYl.jpg
Réponse de Ajinkya Bhoite
le 8 août 2024 à 01h14
issue fixed. thank you.