films_response = requests.get('https://api.themoviedb.org/3/discover/movie?api_key='+TMDB_API_KEY + '&page=' + str(page))
movies= films_response.json()
for movie in movies['results']:
img = movie['poster_path']
img generated this way:
*https://image.tmdb.org/t/p/w300/ *+ img
this one is ok : https://image.tmdb.org/t/p/w300/sgCg7dH3BVx7neExreC8D40JcYC.jpg
this one not: https://image.tmdb.org/t/p/w300/9APfNujclgWtS6dALAzgXdPDpGw.jpg
I think something is not correct on your side.
Kan du ikke finde en film eller TV-serie? Log in og opret den.
Want to rate or add this item to a list?
Ikke medlem?
Svar af Travis Bell
d. 7 juni 2020 kl. 11:02 AM
Is returning a
404
so it doesn't exist. What item is currently returning this image?