amazon-product-api

Fetch product from amazon mws using product api

天大地大妈咪最大 提交于 2019-12-08 10:40:31
问题 I have successfully posted product in amazon using amazon MWS Feeds API . Now i want to list those products using the Products API, But im facing some errors. I run GetMatchingProductSample.php . Caught Exception: Required parameter ASINList not found Response Status Code: 400 Error Code: MissingParameter Error Type: Sender Request ID: 8bb9c8d1-f48c-495c-be86-89492976b4a9 XML: SenderMissingParameterRequired parameter ASINList not found8bb9c8d1-f48c-495c-be86-89492976b4a9

Python wrapper amazon product api

安稳与你 提交于 2019-12-08 08:50:31
问题 I was trying to install the following python wrapper for Amazons product api: http://pypi.python.org/pypi/python-amazon-product-api/0.2.5a1 I'm getting an error "File "setup.py", line 3, in from setuptools import setup, find_packages ImportError: No module named setuptools" once I run the setup.py script. I was wondering if there is something I'm doing wrong. Also, is there some other python wrapper you guys would recommend? Thanks! 回答1: You need to install SetupTools first: http://pypi

How do I tell if a product is prime eligible in the Amazon Product Advertising API?

与世无争的帅哥 提交于 2019-12-08 08:03:45
问题 Been using the API for about a week now and I can't seem to figure out how to access this data in ItemSearch. 回答1: If you perform an ItemSearch the ResponseGroup will contain IsEligibleForSuperSaverShipping which will tell you if it is Prime eligible. 回答2: The attribute IsEligibleForPrime tells you whether the Article is for Amazon Prime or not. It is delivered with the Response Group OfferListings http://docs.aws.amazon.com/AWSECommerceService/latest/DG/CHAP_response_elements.html

Order Process of Amazon

五迷三道 提交于 2019-12-08 04:45:03
问题 We are using Submit Feed and type is _POST_FLAT_FILE_FULFILLMENT_DATA_ to process the Amazon order. We create a flat file that contains order ID and ship date. But when we hit Submit Feed API for orders then it gives warning message that is: Order cannot be fulfilled. Where are we making a mistake? 回答1: If your order contains more then one item then all API fields are required. order-id, order-item-id, quantity and ship-date If order have only one item and you can allow only order ref & date.

How to search for other countries using Amazon Product Advertising API

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-07 05:42:08
问题 I need to be able to search for a product based on barcode, keyword or ASIN - and show the results from amazon.co.uk, amazon.com, amazon.de and amazon.fr (UK, USA, Germany and France). Is that possible? If so, how do I do it? 回答1: At the bottom of this page, you will find links to the various Locales where this Product Advertising API works. However, you need to make a separate subscription to each one of these different APIs. In other words, you need a different AssociateTag , AccessKeyId

How to use Python Amazon Simple Product API to get price of a product

家住魔仙堡 提交于 2019-12-06 04:44:43
问题 I can't seem to get this library working. I got my access key, secret and associate tag. And I am following exact same thing as explained in the README , however I am getting (None, None) instead of price and currency. I don't understand what I am doing wrong. Is it because I signed up on amazon.in? >>> from amazon.api import AmazonAPI >>> amazon = AmazonAPI(AMAZON_ACCESS_KEY, AMAZON_SECRET_KEY, AMAZON_ASSOC_TAG) >>> product = amazon.lookup(ItemId='B0051QVF7A') >>> product.title 'Kindle, Wi

Amazon API submitting requests too quickly

与世无争的帅哥 提交于 2019-12-05 20:52:00
问题 I am creating a games comparison website and would like to get Amazon prices included within it. The problem I am facing is using their API to get the prices for the 25,000 products I already have. I am currently using the ItemLookup from Amazons API and have it working to retrieve the price, however after about 10 results I get an error saying 'You are submitting requests too quickly. Please retry your requests at a slower rate'. What is the best way to slow down the request rate? Thanks,

How to search for other countries using Amazon Product Advertising API

[亡魂溺海] 提交于 2019-12-05 10:49:05
I need to be able to search for a product based on barcode, keyword or ASIN - and show the results from amazon.co.uk, amazon.com, amazon.de and amazon.fr (UK, USA, Germany and France). Is that possible? If so, how do I do it? At the bottom of this page , you will find links to the various Locales where this Product Advertising API works. However, you need to make a separate subscription to each one of these different APIs. In other words, you need a different AssociateTag , AccessKeyId and a secret key in order to access those different APIs. You can implement a search engine that uses all of

Amazon Book API for Python or Ruby? [duplicate]

血红的双手。 提交于 2019-12-05 00:24:25
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: Amazon API library for Python? I'm looking for an Amazon API that will allow me to: Find books by title or author Show book covers Get information about each book (price, rating, number of reviews, format, number of pages, etc.) Either a Python or Ruby library would be fine (I just want the library that's easiest to use). Any suggestions? I know there are some other posts about this on SO, but it seems like

Amazon (AWS) - The request must contain the parameter Signature

ぃ、小莉子 提交于 2019-12-04 21:14:31
问题 I'm struggling with the final part of getting my first bit of code working with the AWS - I have got this far, I attached the web reference in VS and this have this amazon.AWSECommerceService service = new amazon.AWSECommerceService(); // prepare an ItemSearch request amazon.ItemSearchRequest request = new amazon.ItemSearchRequest(); request.SearchIndex = "DVD"; request.Title = "scream"; request.ResponseGroup = new string[] { "Small" }; amazon.ItemSearch itemSearch = new amazon.ItemSearch();