amazon-marketplace

Issues calculating signature for Amazon Marketplace API

十年热恋 提交于 2019-12-19 05:12:58
问题 I’m trying to calculate a signature to make Amazon Marketplace API calls, but I keep getting 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. I’ve wrapped the signature creation process into a class: <?php namespace App\Marketplace\Amazon; class Signature { protected $signedString; public function __construct($url, array $parameters,

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

Issues calculating signature for Amazon Marketplace API

醉酒当歌 提交于 2019-12-01 02:15:39
I’m trying to calculate a signature to make Amazon Marketplace API calls, but I keep getting 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. I’ve wrapped the signature creation process into a class: <?php namespace App\Marketplace\Amazon; class Signature { protected $signedString; public function __construct($url, array $parameters, $secretAccessKey) { $stringToSign = $this->calculateStringToSign($url, $parameters); $this->signedString = $this-