post items from to amazon.com using API

白昼怎懂夜的黑 提交于 2020-01-06 04:36:05

问题


What API I should use to post items from asp.net (C#) web application to amazon.com ? please guide me to proper documentation and steps.

What I am looking for is how to add new item into certain category and pass the item title/description/pictures/price etc... -- plz advice

Thanks


回答1:


You're question is a bit vague, but this was the most useful link I found when researching into how to interface with Amazon using C# -

http://flyingpies.wordpress.com/2009/08/01/17/




回答2:


You need the Marketplace Web Services API. Found at http://developer.amazonservices.com.

You then need the flat file feed specifications to send the flat file in the correct format to the MWS. That can be found after you're logged into your seller central account:

https://sellercentral.amazon.com/gp/help/help.html/ref=ag_13461_cont_help?ie=UTF8&itemID=13461&language=en_US

From there, you can simply send to the MWS the data you need. Here is a snippet of my code:

SubmitFeedRequest req = new SubmitFeedRequest();

        req.ContentMD5 = MarketplaceWebServiceClient.CalculateContentMD5(feedContent);
        feedContent.Position = 0;
        req.FeedContent = feedContent;
        req.FeedType = "_POST_FLAT_FILE_INVLOADER_DATA_";
        req.PurgeAndReplace = false;
        req.Marketplace = MarketPlaceId;
        req.Merchant = MerchantId;

        return Service.SubmitFeed(req);



回答3:


Assuming that by 'posting' you mean posting new items into the amazon marketplace, you can use this api https://affiliate-program.amazon.com/gp/advertising/api/detail/main.html

Also google works wonders for searching




回答4:


It sounds to me like you need the Amazon Market Place Feeds API.

https://developer.amazonservices.co.uk/gp/mws/api.html?ie=UTF8&section=feeds&group=bde&version=latest

You can use SubmitFeed to send product and inventory information to Amazon



来源:https://stackoverflow.com/questions/7052314/post-items-from-to-amazon-com-using-api

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!