I am designing a web app that use Amazon product apis to retrive books info. I am storing images' url and other info for faster retrieval. But, didn't know how often Amazon updates/invalidate its images's urls.

link|improve this question

You are probably better off asking them. – alex Oct 25 '11 at 5:57
1  
They will however tell you that storing the data more than 24 hours is in violation of the licensing agreement. – Jonathan Spooner Oct 25 '11 at 5:58
See section 4 paragraph (n) affiliate-program.amazon.com/gp/advertising/api/detail/… – Jonathan Spooner Oct 25 '11 at 5:59
feedback

2 Answers

up vote 3 down vote accepted

There are ways to get the image just using the ASIN. You don't have to cache. Here is an example URL.

http://images.amazon.com/images/P/ASIN.01.MZZZZZZ.jpg

Just replace ASIN for the product. For more information about images, take a look at http://aaugh.com/imageabuse.html

link|improve this answer
feedback

How often these images change is not up to Amazon but depends entirely on the publishers.

I work for a publishing house and I can tell you from personal experience that a book cover can change quite frequently before going into print. Once it's available as physical product though (i.e. no more pre-order), it will remain the same until the next edition is published.

link|improve this answer
You are talking about Books in general and I am agreeing with you over that. However, my concern is Images urls, because that's totally depends upon Amazon's internal architecture of handling Images. – Gagandeep Singh Oct 25 '11 at 18:29
1  
@GagandeepSingh I did use some old URLs (>4 weeks) in a project once and they stll worked. However, I wouldn't put it past Amazon to change URLs deliberately from time to time. – basti Oct 25 '11 at 21:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.