We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
see https://webservices.amazon.com/paapi5/documentation/
amazon id "can" be obtain from link, but can be tricky since doesn't seem like there is a consistent structure?
for example here the id is B0140RDK8W but both of the following links work
B0140RDK8W
https://www.amazon.com/gp/product/B0140RDK8W
https://www.amazon.com/dp/B0140RDK8W
The text was updated successfully, but these errors were encountered:
see list of supported urls https://stackoverflow.com/questions/902001/how-to-get-product-information-from-amazon-just-based-on-the-url
http://amazon./gp/product/* http://amazon.//dp/* http://amazon./dp/* http://amazon./o/ASIN/* http://amazon./gp/offer-listing/* http://amazon.//ASIN/* http://amazon./gp/product/images/* http://amazon./gp/aw/d/* http://www.amzn.com/* http://amzn.com/*
http://amazon./gp/product/*
http://amazon.//dp/*
http://amazon./dp/*
http://amazon./o/ASIN/*
http://amazon./gp/offer-listing/*
http://amazon.//ASIN/*
http://amazon./gp/product/images/*
http://amazon./gp/aw/d/*
http://www.amzn.com/*
http://amzn.com/*
Sorry, something went wrong.
https://stackoverflow.com/questions/21700573/get-asin-from-pasted-amazon-url seems to have some "easier" solutions
following regex works for the supported urls list
(?:dp|o|gp|-|gp\/product|\/ASIN|gp\/offer-listing|gp\/product\/images|gp\/aw\/d)\/(B[0-9]{2}[0-9A-Z]{7}|[0-9]{9}(?:X|[0-9]))
excluding the following 2 urls
http://www.amzn.com/* http://amzn.com/*
implemented setup with 6df1800 and 8151be1, now waiting for registration from amazon associates, until further work can be done
No branches or pull requests
see https://webservices.amazon.com/paapi5/documentation/
amazon id "can" be obtain from link, but can be tricky since doesn't seem like there is a consistent structure?
for example here the id is
B0140RDK8W
but both of the following links workhttps://www.amazon.com/gp/product/B0140RDK8W
https://www.amazon.com/dp/B0140RDK8W
The text was updated successfully, but these errors were encountered: