从到amazon.com使用API​​员额项目

编程入门 行业动态 更新时间:2024-10-06 12:27:18
本文介绍了从到amazon使用API​​员额项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

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

What API I should use to post items from asp (C#) web application to amazon ? 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。在 developer.amazonservices 找到。

You need the Marketplace Web Services API. Found at developer.amazonservices.

然后,您需要平面文件饲料规格发送平面文件以正确的格式到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:

sellercentral.amazon/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​​员额项目

本文发布于:2023-11-28 04:28:40,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1640963.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:员额   项目   amazon   API

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!