amazon-mws

How up-to-date are Amazon MWS reports?

[亡魂溺海] 提交于 2019-12-24 00:45:45
问题 I have the following problem: I updated my products via Amazon's MWS API (using PHP - _POST_PRODUCT_DATA_ and _POST_INVENTORY_AVAILABILITY_DATA_). I deleted one product and updated the available quantity for another product. After both feeds have been processed (wihtout errors) I requested a report of all my listings (_GET_MERCHANT_LISTINGS_ALL_DATA_). This report did not contain any of the changes I made. After about an hour, the quantity change showed up in another report, the deleted

Amazon Order API or Report API to get SKU number and total quantity sold?

孤人 提交于 2019-12-23 18:09:33
问题 I want a list of all SKU for which there were any sales between the From Date and To Date with the quantity sold. I am all confused what to do - should I use Amazon MWS Order API for this or Report API for this? Does anyone have a c# code which shows how a report is requested and downloaded at my end for further processing i.e. saving the data in databases. Any help would be much appreciated. p.s. I have a large volume of data UPDATE: Meanwhile I have written this code to get the report type

Python HMAC / Encoding in 3.x vs 2.x

浪子不回头ぞ 提交于 2019-12-23 02:30:46
问题 I'm working with code that works in Python 2.7, but when I use it with 3.6, it doesn't work. It's meant to encode a signature for an Amazon MWS API call. The original code in Python 2.7: sig_encoded = base64.b64encode(hmac.new(str(self.secret_key), sig_data, hashlib.sha256).digest()) I read a few other posts here, followed the instructions, and came up with this: Python 3.6 key_enc = (bytes(self.secret_key, "utf-8")) sig_data_enc = (bytes(sig_data, "utf-8")) sig_encoded = base64.b64encode

Using R to make Amazon MWS API calls

江枫思渺然 提交于 2019-12-22 12:25:42
问题 I'm using R to make a call to the Amazon MWS API and get the following error: The request signature we calculated does not match the signature you provided. Check your AWS Secret Access Key and signing method. Consult the service documentation for details. This post helped me a lot with the Product Advertising API. However, I cannot seem to make it work on the MWS side. Here is my code: library(digest) library(RCurl) base.html.string <- "https://mws.amazonservices.com/Products/2011-10-01?"

Using R to make Amazon MWS API calls

大憨熊 提交于 2019-12-22 12:25:08
问题 I'm using R to make a call to the Amazon MWS API and get the following error: The request signature we calculated does not match the signature you provided. Check your AWS Secret Access Key and signing method. Consult the service documentation for details. This post helped me a lot with the Product Advertising API. However, I cannot seem to make it work on the MWS side. Here is my code: library(digest) library(RCurl) base.html.string <- "https://mws.amazonservices.com/Products/2011-10-01?"

Get Amazon MWS results to Json or Xml and elaborate them

杀马特。学长 韩版系。学妹 提交于 2019-12-22 03:58:06
问题 Is there any way to get results of an Amazon MWS request in the Json or Xml format instead of a plain string? my code is the following: public function listOrders() { $request = "https://mws.amazonservices.it/Orders/2013-09-01?"; $request .= $this->getParameterString($this->parameters) . "&Signature=" . $this->calculateSignature($this->calculateStringToSign($this->parameters)); $ch = curl_init(); // set URL and other appropriate options curl_setopt($ch, CURLOPT_URL, $request); curl_setopt($ch

Amazon MWS PHP Mark order as Shipped - Submit Order Fulfillment with Shipping with XML in variable

耗尽温柔 提交于 2019-12-22 00:27:11
问题 How to mark an order shipped in Amazon MWS by using an XML feed - using the correct endpoint, service, version and headers? This was the question, and it took me 3 days to manage it since amazon api is extremely chaotic, documentation is medieval, and most critical information like proper endpoint addresses to submit any particular information is a mystery to find. I was only able to create it by imitating a request at scratchpad, randomly testing sections, combining the examples for other

Amazon developer ID

ε祈祈猫儿з 提交于 2019-12-20 07:16:26
问题 I would like to start developing amazon integration for my website I would like to integrate products, orders etc and I understand I have to use Amazon MWS for API. To start using MWS I created a developer account Now the amazon seller has to authorize me by inserting my developer ID. I can't find IT. I contact amazon support and they told me to go Settings -> User Permissions -> Click on visit developer credentials. But if I go to User Permissions I only see the users list with the

Amazon developer ID

纵然是瞬间 提交于 2019-12-20 07:16:06
问题 I would like to start developing amazon integration for my website I would like to integrate products, orders etc and I understand I have to use Amazon MWS for API. To start using MWS I created a developer account Now the amazon seller has to authorize me by inserting my developer ID. I can't find IT. I contact amazon support and they told me to go Settings -> User Permissions -> Click on visit developer credentials. But if I go to User Permissions I only see the users list with the

HOW? Submit Amazon Create Fulfilment Order XML using PHP API

纵饮孤独 提交于 2019-12-20 06:27:54
问题 I am struggling with the Amazon API at this point! I am trying to Create Fulfillment Orders, send orders to Amazon for them to fulfill. I first need to create the XML which I have used the documentation @ http://www.jyi.org/wp-content/uploads/Amazon-xml.pdf Page 42 (labelled 38). This bit is fine, the XML is great.. I then need to submit this to Amazon, as always I would go down the route of using there API, the PHP Fulfilment Api is available here... https://developer.amazonservices.com/doc