Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
649 views
in Technique[技术] by (71.8m points)

asp.net - amazon marketplace web service (amazon mws) using c#

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..

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

In order to use Amazon Marketplace Webservices (MWS) you will need a Pro Merchant seller account, an Amazon WebStore account, a Checkout by Amazon account, or an Amazon Product Ads account. The Pro Merchant or Professional Sellers account is currently priced at £25.00 or $39.99 USD per month. Then sign up for MWS by clicking the Sign up for MWS button at http://developer.amazonservices.co.uk/ (or appropriate for your region).

It is my understanding that by calling Amazon Seller Service you can get a "sandboxed" MWS account, although I've never used that.

Once that's set up, you have two options:

  1. Create a tab delimited text feed with your product information (called "flat file" in the documentation)
  2. Create multiple XML feeds (mostly these four: products, prices, inventory and images)

Once that's done, you use the following API calls:

  1. SubmitFeed to send your data to Amazon and put it in the processing queue (you will need to call this multiple times if using the XML formats)
  2. GetFeedSubmissionList to see if it was processed
  3. GetFeedSubmissionResult to see if anything went wrong

If done right, using above APIs can completely automate the process of creating new products on Amazon, linking your data to existing products (by linking to the same ASINs, EANs, UPCs or ISBNs) as well as changing images, prices and inventory.

The Amazon Developer site has C# sample client code for you to play with. Other useful references:


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...