Hi am trying to get movies images using the link https://image.tmdb.org/t/p/original/ by passing the path of the movie
this is the base_url=" https://image.tmdb.org/t/p/original/"
and this is the image tag am using
but when i run the app it gives me zzWGRw277MNoCs3zhyG3YmYQsXv.jpg:1
GET https://image.tmdb.org/t/p/original/%20/zzWGRw277MNoCs3zhyG3YmYQsXv.jpg 404
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 14 septembrie 2020 la ora 12:58 PM
Compare your URL (1) to the one that works correctly (2):
In your URL there is this string that is generating the error: %20/
It refers to an additional " Space + Slash ".
Răspuns de H_A
pe data de 14 septembrie 2020 la ora 1:35 PM
ok thanks it worked
Răspuns de vidhatenikhil954
pe data de 22 august 2022 la ora 10:47 AM
Hi am trying to get movies images using the link https://image.tmdb.org/t/p/original/ by passing the path of the movie
this is the base_url=" https://image.tmdb.org/t/p/original/"
and this is the image tag am using
but when i run the app it gives me zzWGRw277MNoCs3zhyG3YmYQsXv.jpg:1 GET https://image.tmdb.org/t/p/original/%20/zzWGRw277MNoCs3zhyG3YmYQsXv.jpg 404
Răspuns de Travis Bell
pe data de 23 august 2022 la ora 11:35 AM
Just like the above example, you have an extra encoded space in your URL. Compare these two URLs:
The second one is correct, the first one is not.
Răspuns de Programmer_Online
pe data de 18 octombrie 2022 la ora 4:26 AM
Thank You Travis!
Răspuns de JayakrishnansKumar
pe data de 7 noiembrie 2022 la ora 2:32 AM
Hi am trying to get movies images using the link https://image.tmdb.org/t/p/original/ by passing the path of the movie this is the base_url=" https://image.tmdb.org/t/p/original/" and this is the image tag am using. When i looked in the inspected that i get original undefined. error 404. but that time i do get the images , But after i hosted the page, im not able to view any images. can i get some help!
Răspuns de Travis Bell
pe data de 7 noiembrie 2022 la ora 1:10 PM
@JayakrishnansKumar What's a full and complete URL that is 404'ing?
Răspuns de Belete
pe data de 9 decembrie 2023 la ora 7:18 AM
https://image.tmdb.org/t/p/original/
Răspuns de ticao2 🇧🇷 pt-BR
pe data de 9 decembrie 2023 la ora 8:53 AM
I don't know if that's what you're asking for, but ...
When an API Request is made, in the responses received you will find the Path of the images:
poster_path or backdrop_path or profile_path or logo_path or still_path.
Something like that:
To access/download the image use the basic images URL.
The request should be similar to these:
https://image.tmdb.org/t/p/original/wigZBAmNrIhxp2FNGOROUAeHvdh.jpg
Make sure to read the documentation around images.
https://developer.themoviedb.org/docs/image-basics
https://developer.themoviedb.org/reference/configuration-details
Image Sizes