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.
Can't find a movie or TV show? Login to create it.
Want to rate or add this item to a list?
Not a member?
Reply by Travis Bell
on June 7, 2020 at 11:02 AM
Is returning a
404
so it doesn't exist. What item is currently returning this image?