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})
Kan du inte hitta en film eller tv-serie? Logga in för att skapa den.
Vill du betygsätta denna artikel eller lägga till den i en lista?
Inte medlem?
Svar från Travis Bell
den 25 mars 2016 vid 9:56 AM
Hi ntfalcone93,
You can read about how to build image URLs here: http://docs.themoviedb.apiary.io/#reference/configuration
Cheers.
Svar från septronic
den 27 mars 2016 vid 9:15 AM
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:)