amazon-mws

Can I use two Amazon MWS accounts from the same server?

家住魔仙堡 提交于 2019-12-11 04:33:24
问题 Recently I used two MWS accounts from same server. And Amazon sent us an email that you are operating on two accounts. Do they track IP's of API calls? How can I use both accounts? 回答1: Are you using multiple developer credentials? In my case, as a developer, I have a set of developer credentials that I use for all my clients. I use the token and seller id that they provide me with. I service multiple clients on a web page using a single set of dev credentials, only swapping in/out the client

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

Is there a amazon webstore API for customers?

白昼怎懂夜的黑 提交于 2019-12-11 04:15:02
问题 I am working on a personal expense tracking application and would like to retrieve a list of orders made by a customer (me) on amazon.com. The Amazon MWS API is described as follows: Amazon Marketplace Web Service (MWS) is an integrated web service API that allows Amazon sellers to programmatically exchange data on orders, payments, reports, and more. That is clearly meant for use by sellers, not by customers. Is there any way I could retrieve that information, without having to rely on

Amazon MWS API Call Using Delphi/Indy

北城以北 提交于 2019-12-11 03:31:30
问题 I'm developing a simple application to "talk" to the Amazon MWS API. Because a lot of existing code is at play here, I need to get this done in Delphi 2010 with Indy 10 (10.5.5) components, which I have used successfully to integrate with many other APIs in the past. However, the Amazon API seems to be incredibly sensitive to the smallest of details, to the point that all my calls are being denied with the already infamous "SignatureDoesNotMatch" error message. Here's what I have accomplished

Split results from DB into “chunks” of 10

二次信任 提交于 2019-12-11 02:55:02
问题 Afternoon, I need a hand to split over 1200 results into "chunks" of 10 so i can process these results with the Amazon MWS API. Can anyone provide any guidance on how i would go about doing this please? List<string> prodASIN = dc.aboProducts.Select(a => a.asin).Take(10).ToList(); I currently have this, which works. But i have 1200+ results and need to loop through each 10 so i can process them and pass them over to the Amazon MWS API 回答1: Why not try something like: //Load all the database

Amazon Europe MWS Python Boto Connection AccessDenied

[亡魂溺海] 提交于 2019-12-11 02:24:35
问题 Recently, I started learning Python. I plan to build a program for our company to manage the orders from all the Amazon Marketplace websites, our own Bigcommerce store and eBay. Now I can use the Boto library to successfully send requests to Amazon US, Amazon Canada, and Amazon Mexico and get all the order information. (Boto is the only library I could find that works perfect with Amazon MWS) But when I use the same method to send requests to Amazon.co.uk, it failed. Here is the sample code I

How to retrieve Amazon Returned Item from MWS

人盡茶涼 提交于 2019-12-10 20:53:30
问题 I try to get the returned items for every Orders, but unfortunately it dosen't seem to provide this kind of information from the Amazon Web Services. public GetOrderResponse InvokeGetOrder() { // Create a request. GetOrderRequest request = new GetOrderRequest(); request.SellerId = sellerId; string mwsAuthToken = ""; request.MWSAuthToken = mwsAuthToken; List<string> amazonOrderId = new List<string>(); amazonOrderId.Add("106-5297482-5403402"); request.AmazonOrderId = amazonOrderId; return this

Amazon api not deleting my products from inventory

邮差的信 提交于 2019-12-10 20:29:44
问题 I'm sending $feed = <<<EOD <?xml version="1.0"?> <AmazonEnvelope xsi:noNamespaceSchemaLocation="amzn-envelope.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Header> <DocumentVersion>1.01</DocumentVersion> <MerchantIdentifier>XXMYMERCHANTXX</MerchantIdentifier> </Header> <MessageType>Product</MessageType> EOD; foreach($skus as $k => $v) { $feed = $feed . <<<EOD <Message> <MessageID>$count</MessageID> <OperationType>Delete</OperationType> <Product> <SKU>$k</SKU> </Product> <

MWS Post Request with Google Scripts

喜你入骨 提交于 2019-12-10 10:38:54
问题 I am trying to make a post request through google scripts to amazon to collect information. We are trying to get our orders to MWS and transfer them to sheets automatically. I got to the last step which is signing the request. A few things I wasnt sure about: They say we use the secret key for hashing,I only see a client secret and an access key id, which do I use? Do I add the URL as part of whats getting signed? On the MWS Scratch pad they add this as shown: POST mws.amazonservices.com

Amazon MWS API w/ PHP: alternative to getFeedSubmissionResult

冷暖自知 提交于 2019-12-10 10:27:33
问题 I'm having a problem with retrieving the results of a processed feed file using Amazon MWS API with PHP. I'm using the getFeedSubmissionResult class, to be precise. The problem is that when i use the API, as instructed by the documentation, there are no relevant data that is read by the class that i can access (or so it seems). So my question is: how do i retrieve the raw XML file that amazon sends back and store it to a file on my computer? I've been retracing the code used by MWS and trying