amazon-mws

Amazon MWS Order Cancel process

江枫思渺然 提交于 2019-12-20 02:34:16
问题 I am trying to cancel the order on the amazon, initially was having some of the format issues, now all the format issues are removed but feed result is keep showing one or more item is invalid. i am using the correct xml format to cancel the order and also the correct amazon order id and amazon order item id, both id are valid but the result keep showing the invalid item. Order Acknowledgement Feed Format: <?xml version="1.0"?> <AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema

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 MWS SubmitFeed Content-MD5 HTTP header did not match the Content-MD5 calculated by Amazon

Deadly 提交于 2019-12-19 05:01:41
问题 I know this question is not new but all the solution I get for this are in PHP or my issue is different from them. I am using MWS feed API to submit flat file for Price and Quantity Updates and always get the following error: the Content-MD5 HTTP header you passed for your feed did not match the Content-MD5 we calculated for your feed I would like to ask 3 questions here:- ContentMD5Value parameter is optional as given in doc, but if i not passed that than it will say that you must enter

Mapping amazon product category to the correct category XSD

情到浓时终转凉″ 提交于 2019-12-18 13:34:41
问题 Within the _POST_PRODUCT_DATA_ feed the "ProductData" node contains data that is specific to the category that the item is within. How exactly though should the category the item is in be mapped to an XSD as there doesn't (always) seem to be a direct relationship. Calling "GetProductCategoriesForASIN" doesn't seem to help much either - what's with ProductCategoryName of "Categories"? (as below) <?xml version="1.0"?> <GetProductCategoriesForASINResponse xmlns="http://mws.amazonservices.com

How to add product in amazon using amazon api?

為{幸葍}努か 提交于 2019-12-18 10:54:15
问题 I'm doing a project using ebay and amazon api. I've uploaded products to ebay sandbox using the api. but I searched for api to add products in amazon api. Is there any documentation or reference to do it? Please help me solve this. Thanks 回答1: You have to use the Amazon MWS API (it's not the same as AWS product API) in order to upload your products to Amazon. Here you can read everything you need to know about MWS. For your particular problem, you'll have to submit a feed which contains the

Amazon MWS Read Inventory Stock Php

半城伤御伤魂 提交于 2019-12-13 01:34:53
问题 I am trying to get the available stock of a product for an sku. I searched it a-lot found some pdfs non of them worked for me. I am stuck scratching my head what to do, can anyone help me I will be more then thankful. I also tried this code, $skus = new FBAInventoryServiceMWS_Model_SellerSkuList(); $skus->setmember( 'sku-111' ); invokeListInventorySupply($service, $request->withSellerSkus( $skus ) ); but what it returned is InStockSupplyQuantity is 0 you can see on this link This is the full

Amazon MWS API using PHP shows no Result

三世轮回 提交于 2019-12-12 17:26:44
问题 I have been using amazon mws API for developing a project to find Lowest Priced offers, It works fine with action ListMatchingProducts and GetMatchingProduct but when it comes to GetLowestPricedOffersForASIN, it shows no result in XML output "This XML file does not appear to have any style information associated with it. The document tree is shown below." My PHP File Here: <?php $param = array(); $param['AWSAccessKeyId'] = ''; $param['Action'] = 'GetLowestPricedOffersForASIN'; $param[

Amazon MWS Scratchpad API

余生长醉 提交于 2019-12-12 15:52:11
问题 I am trying to get Amazon MWS Scratchpad working, but it keeps giving me a message: 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 was looking for similar topic out here, but nothing really helpful. So, here is code: $params = array( 'AWSAccessKeyId' => AWS_ACCESS_KEY_ID, 'Action' => "GetLowestOfferListingsForASIN", 'SellerId' => MERCHANT_ID, 'SignatureMethod'

amazon marketplace web service (amazon mws) using c#

点点圈 提交于 2019-12-12 07:16:07
问题 I studied about amazon marketplace from https://developer.amazonservices.co.uk/[^] I want to learn more in detail about adding product in amazon using this service. what will the steps to add product in amazon, will I required first list the products from amazon then add or can add directly(as i know we cant create new product in amazon) The documentation is not cleared, and we have not any kind of testing environment for test. If you have any helpful link please provide me.. 回答1: In order to

Can I use AWS to get product descriptions about Amazon.com retail products?

邮差的信 提交于 2019-12-11 10:32:44
问题 I'm really new with amazon. What I want to do is to get amazon product descriptions to my localhost server by using product ASIN number and PHP (can i do this???). I haven't done this before and don't know how to perform this action. I think that just scraping the price from the Amazon website is bad idea and better to use an API. Can I use Amazon AWS for this? I have created an account in https://aws.amazon.com/ (is this the right place?) and see this big screen with many amazon aws options.