@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.
Nu găsiți un film sau un serial? Autentificați-vă pentru a-l crea.
Răspuns de ticao2 🇧🇷 pt-BR
pe data de 2 iulie 2023 la ora 7:51 AM
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ăspuns de satyamramanujan
pe data de 4 iulie 2023 la ora 10:52 AM
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.