movie id tt0438097 can be found at http://www.imdb.com/title/tt0438097/
What's the url for its poster image?
|
movie id tt0438097 can be found at http://www.imdb.com/title/tt0438097/ What's the url for its poster image? |
|||||||
|
|
As I'm sure you know, the actual url for that image is You're going to be hard pressed to figure out how it's generated though and they don't seem to have a publicly available API. Screenscraping is probably your best bet. The picture seems to generally be inside a div with class=photo and the name of the a tag is poster. The image itself is just inside the a tag. |
|||||||
|
|
Check out http://www.imdbapi.com/, It returns Poster url in string. For example, check http://www.imdbapi.com/?i=&t=inception and you'll get the poster address: Update: Seems like the site owner had some arguments with IMDB legal staff. As mentioned in the original site, new site's address is http://www.omdbapi.com/ |
||||
|
|
|
The URL is a random string as far as I can tell. It can still be easily retrieved. It is the only So, if you are reading the source, simply search for However, you will need to keep the screen scraping code updated because that will probably change. You should also be aware that the images are copyrighted, so be careful to only use the image under a good "fair use" rationale. |
|||
|
|
|
If a thumb is enough, you can use the Facebook Graph API: http://graph.facebook.com/?ids=http://www.imdb.com/title/tt0438097/ Gets you a thumbnail: http://profile.ak.fbcdn.net/hprofile-ak-ash2/50289_117058658320339_650214_s.jpg |
|||
|
|
|
Be aware tough, that the terms of service explicitly forbid screenscraping. You can download the IMDB database as a set of text files, but as I understand it, the IMDB movie ID is nowhere to be found in these text files. |
|||
|
|
|
Those poster images don't appear to have any correlation to the title page, so you'll have to retrieve the title page first, and then retrieve the img element for the page. The good news is that the img tag is wrapped in an a tag with name="poster". You didn't say what kind of tools you are using, but this basically a screen scraping operation. |
|||
|
|
Now a days, all modern browser have "Inspect" section: 100% Correct for Google Chrome only:
Try to paste it any where as URL in any browser, you will only get the image. |
|||
|
|