@Ahmed3del said: how do i get images
how do i get images from the api
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:
use html template if you are in a website, use this https://image.tmdb.org/t/p/original/${movie.backdrop_path}, basically you have to add additional url "https://image.tmdb.org/t/p/original/" before backdrop_path.
Réponse de ticao2 🇧🇷 pt-BR
le 2 juillet 2023 Ă 07h51
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
Réponse de satyamramanujan
le 4 juillet 2023 Ă 10h52
use html template if you are in a website, use this
https://image.tmdb.org/t/p/original/${movie.backdrop_path}
, basically you have to add additional url "https://image.tmdb.org/t/p/original/" before backdrop_path.