I'm trying to find the image URLs for Amazon products based solely on their ASIN.
For example:
This link is for a product with ASIN B07NVVQL66 in the USA If you click it you will see an image of the product
http://images.amazon.com/images/P/B07NVVQL66.01._SCLZZZZZZZ_.jpg
I want to do something similar for product with ASIN B07QXZV6SH in the UK This URL doesn't work though
http://images.amazon.com/images/P/B07QXZV6SH.01._SCLZZZZZZZ_.jpg
and also for product with ASIN B07SD338ZL in Germany Again the url doesn't work
http://images.amazon.com/images/P/B07SD338ZL.01._SCLZZZZZZZ_.jpg
I found the URLs above by using the method described here
There are also some "tricks" here which I also tried but didn't work, eg I tried changing the 01 section to 02 and 03 but still nothing.
Why do I want this?
I have a list of ASINs for which I want to show a thumbnail. The other method is to scrape the product listings one by one but that isn't practical.
Also, I can't use Amazon MWS since this is in a Chrome Extension so it will run locally on each users computer.