amazon-product-api

Amazon MWS Product API How to retrieve Sales Rank and Merchant Name

时光总嘲笑我的痴心妄想 提交于 2019-12-24 01:55:06
问题 I've been experimenting heavily with the different MWS API's. I'm trying to retrieve the following info about my items: 1 - Number of offers - Available via GetLowestPricedOffersForSKU 2 - Number of FBA offers - Available via GetLowestPricedOffersForSKU 3 - Sales Rank of product - ? 4 - Competitive Price (buy box) - Available via GetCompetitivePricingForSKU 5 - Names of other merchants offering product - ? 6 - Price of offers - Available via GetLowestPricedOffersForSKU The two elements I

Amazon API ItemSearch returns (400) Bad Request

荒凉一梦 提交于 2019-12-24 00:29:21
问题 I'm using a simple example from Amazon documentation for ItemSearch and I get a strange error: "The remote server returned an unexpected response: (400) Bad Request." This is the code: public static void Main() { //Remember to create an instance of the amazon service, including you Access ID. AWSECommerceServicePortTypeClient service = new AWSECommerceServicePortTypeClient(new BasicHttpBinding(), new EndpointAddress( "http://webservices.amazon.com/onca/soap?Service=AWSECommerceService"));

How do I get just the product name from Amazon's Product Advertising API?

你说的曾经没有我的故事 提交于 2019-12-22 07:04:24
问题 So I feel like I must be missing something incredibly simple here, but I can't seem to figure out how to get a product's name alone from the Product Advertising API. For instance, if I go to look at this product, I see that the product is listed as "The First Years Ignite Stroller", and the "City Chic" color is selected. From the API, I can see Brand ("The First Years") and Color ("City Chic"), but Title returns "The First Years Ignite Stroller, City Chic", with no other apparent ways to get

How to get book cover picture through amazon API [duplicate]

萝らか妹 提交于 2019-12-20 10:45:05
问题 This question already has answers here : How do I get a book graphic and description from the Amazon Book API? (3 answers) Closed 3 years ago . I want to get the cover of a book form its ASIN through Amazon API. I use the ItemLookup function, but I only get the author , manufacturer and the title . ie : <ItemAttributes> <Author>Anna Gavalda</Author> <Manufacturer>J'Ai Lu</Manufacturer> <ProductGroup>Book</ProductGroup> <Title>Ensemble, C'Est Tout (French Edition)</Title> </ItemAttributes> 回答1

Amazon Product Advertising API Signing Issues

有些话、适合烂在心里 提交于 2019-12-20 02:46:19
问题 i am trying to search in amazon product database with the following code posted in amazon webservice sample codes page AWSECommerceService ecs = new AWSECommerceService(); // Create ItemSearch wrapper ItemSearch search = new ItemSearch(); search.AssociateTag = "ABC"; search.AWSAccessKeyId = "XYZ"; // Create a request object ItemSearchRequest request = new ItemSearchRequest(); // Fill request object with request parameters request.ResponseGroup = new string[] { "ItemAttributes" }; // Set

Get list of ALL offers from Amazon Product Advertising API

做~自己de王妃 提交于 2019-12-17 22:46:15
问题 I need to be able to get a listing of all offers for a product using the amazon API. This is the request I'm sending: http://webservices.amazon.com/onca/xml?Service=AWSECommerceService&Operation=ItemLookup&SubscriptionId=&AssociateTag=&Version=2011-08-01&ItemId=B007IJQDQQ&IdType=ASIN&ResponseGroup=Offers&Condition=All&MerchantId=All This is returning the follow under offers: <Offers> <TotalOffers>1</TotalOffers> <TotalOfferPages>1</TotalOfferPages> <MoreOffersUrl> http://www.amazon.com/gp

Get the product category with Amazon Product Advertising API

廉价感情. 提交于 2019-12-13 04:43:36
问题 With the Amazon Product Advertising API , I am able to retrieve the products list with ISBN , ASIN , and UPC . I have all the information like Title , Image , Best Sellers Rank etc. Now I want to retrieve the product category. In the response, I'm getting the following Product attributes <ItemAttributes> <Binding>Office Product</Binding> <Brand>3M</Brand> <CatalogNumberList> <CatalogNumberListElement>MMMTP5851100</CatalogNumberListElement> </CatalogNumberList> <Color>NA</Color> <EAN

Getting landing price from amazon API

♀尐吖头ヾ 提交于 2019-12-11 04:24:27
问题 I've been using the Amazon Product API in Python via this client. However, I want to get the "landing price" for a given product - the price that Amazon displays prominently, the most competitive price when taking into account both the base price and delivery price. For example if a product has 2 offers such as $1 + $5 delivery vs $3 Free delivery, the landing price would be the $3 and be shown prominently by Amazon as it's the most competitive. If I use the OfferSummary ResponseGroup of the

With jQuery, How Do I Intercept Hyperlink Click Events Temporarily?

北城余情 提交于 2019-12-10 01:52:37
问题 This question refers to affiliate marketing, but really is a generic question about intercepting hyperlinks before they go off to another site, where you can log visitor activity to a database. My affiliate marketing client had a really good question. Imagine a scenario where you have products pulled back from Amazon over its API, given a seed keyword. Now imagine a visitor clicks one of those products to view it on Amazon. The URL for that product might look like this (and this is just a

Python wrapper amazon product api

こ雲淡風輕ζ 提交于 2019-12-08 18:59:27
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! You need to install SetupTools first: http://pypi.python.org/pypi/setuptools#downloads 来源: https://stackoverflow.com/questions/5587560/python-wrapper-amazon