@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.
ticao2 🇧🇷 pt-BR 的回复
于 2023 年 07 月 02 日 7:51上午
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
satyamramanujan 的回复
于 2023 年 07 月 04 日 10:52上午
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.