When I use the movie/id url (http://api.themoviedb.org/3/movie/id) I am given the poster path like so "/2lECpi35Hnbpa4y46JX0aY3AWTy.jpg". I am wondering what the base url is, and/or what the whole url I would use to get the image. Thanks
Here is what i'm given from my url (http://api.themoviedb.org/3/movie/275?api_key={APIKEY})
找不到电影或节目?登录并创建它吧。
Travis Bell 的回复
于 2016 年 03 月 25 日 9:56上午
Hi ntfalcone93,
You can read about how to build image URLs here: http://docs.themoviedb.apiary.io/#reference/configuration
Cheers.
septronic 的回复
于 2016 年 03 月 27 日 9:15上午
Hi you have to use the configuration request (look at the above answer by @ntfalcone93) to get the base_url of the image. You also need to specify which size format you need it. They are in the image dictionary provided in the JSON response for the configuration. This is the configuration request link I used: https://api.themoviedb.org/3/configuration?api_key=MYAPIKEY
this is what my image url looks like: https://image.tmdb.org/t/p/ (The base url) w300/ (the size param) w93GAiq860UjmgR6tU9h2T24vaV.jpg (image link). Obviously without the spaces and the brackets:)