从到amazon.com使用API​​员额项目 [英] post items from to amazon.com using API

查看:181
本文介绍了从到amazon.com使用API​​员额项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

什么API应该使用后从asp.net(C#)Web应用程序项目amazon.com?
请指引我正确的文件和步骤。

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.

我所寻找的是如何将新的项目加入到某一类,并通过该项目的标题/描述/图片/价格等等 - PLZ建议

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

感谢

推荐答案

您需要卖场Web服务API。在 http://developer.amazonservices.com 找到。

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

然后,您需要平面文件饲料规格发送平面文件以正确的格式到MWS。你登录到您的卖家帐户中心后,可以发现:

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:

<一个href=\"https://sellercentral.amazon.com/gp/help/help.html/ref=ag_13461_cont_help?ie=UTF8&itemID=13461&language=en_US\" rel=\"nofollow\">https://sellercentral.amazon.com/gp/help/help.html/ref=ag_13461_cont_help?ie=UTF8&itemID=13461&language=en_US

从那里,你可以简单地发送到MWS您所需要的数据。这里是我的code的一个片段:

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);

这篇关于从到amazon.com使用API​​员额项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆