19

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?

starball
  • 20,030
  • 7
  • 43
  • 238
Natesan
  • 1,135
  • 2
  • 14
  • 21

1 Answers1

28

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 product data you want to upload. Here is the documentation about Amazon's feed mechanism and feed submit operation.

UPDATE:

There are the feed client libraries, with the code samples, for C#, Java and PHP. For example, if you download the Java client library, you'll find a great example within the file on the path: src\com\amazonaws\mws\samples\SubmitFeedSample.java, etc.

If you are using another language, you'll have to write your own code, but the approach should be straightforward: you have a WS end-point (i.e. https://mws.amazonservices.com) and you have to execute the SubmitFeed operation against it.

An XML sample of the feed content

Feed content example.

CyberMJ
  • 865
  • 2
  • 12
  • 25
  • Thanks, but is there any sample code to start?. because, I studied all. but still don't know how to implement it. – Natesan Mar 31 '14 at 08:43
  • 1
    @CyberMJ is there any sample of how to write the feedContent? – yuyue007 Sep 24 '14 at 08:22
  • @yuyue007 did you find any yet? – wutzebaer Oct 27 '14 at 10:13
  • @yuyue007 Sorry, I missed your question. If I got it, you need an XML sample of the feed content? I updated the answer. – CyberMJ Oct 27 '14 at 10:37
  • 1
    @wutzebaer The answer has been updated with the feed content sample. – CyberMJ Oct 27 '14 at 10:37
  • 1
    @yuyue007 in meantime i found some other samples in the internet, but i cannot find a definition from Amazon, how do they know the XML format? – wutzebaer Oct 27 '14 at 10:40
  • @wutzebaer The link behind the "feed content example" text (the bottom of the answer) doesn't help you? There is an XML format provided by the Amazon, please have a look. – CyberMJ Oct 27 '14 at 10:43
  • 1
    no not really, but i found this : https://images-na.ssl-images-amazon.com/images/G/01/rainier/help/XML_Documentation_Intl.pdf – wutzebaer Oct 27 '14 at 10:57
  • @wutzebaer I have find some XSD available, https://images-na.ssl-images-amazon.com/images/G/01/rainier/help/xsd/release_4_1/Product.xsd , we can get all other related XSD from it's hierarchy. – yuyue007 Oct 29 '14 at 02:55
  • Can We Use this Api to create a website which shows our products and create orders which will then be handled by amazon – Master Yoda Nov 30 '16 at 10:21