Given an IMDB movie id, how do I programmatically get its poster image?

前端 未结 17 791
礼貌的吻别
礼貌的吻别 2020-12-08 03:17

movie id tt0438097 can be found at http://www.imdb.com/title/tt0438097/

What\'s the url for its poster image?

17条回答
  •  温柔的废话
    2020-12-08 03:36

    I know that it is way too late, but in my project I used this:-

    1. Use omdbapi, Lets take example of Inception, use www.omdbapi.com/?t=inception it will return a json object.
    2. In that json object get the "Poster" object, it contains the poster for the image.

提交回复
热议问题