我应该使用什么API将项目从asp.net (C#) web应用程序发布到amazon.com?请指导我正确的文档和步骤。
我正在寻找的是如何添加到某些类别的新项目,并通过项目标题/描述/图片/价格等…--请提供建议
谢谢
发布于 2011-08-14 02:14:15
你的问题有点模糊,但这是我在研究如何使用C#与亚马逊交互时发现的最有用的链接-
http://flyingpies.wordpress.com/2009/08/01/17/
发布于 2011-08-19 14:39:56
您需要Marketplace Web服务API。在http://developer.amazonservices.com找到。
然后,您需要平面文件提要规范,才能以正确的格式将平面文件发送到MWS。您可以在登录到您的卖方中心帐户后找到:
从那里,您可以简单地将所需的数据发送到MWS。下面是我的代码片段:
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);
发布于 2011-08-14 02:05:54
假设“发布”是指将新项目发布到亚马逊市场,您可以使用此https://affiliate-program.amazon.com/gp/advertising/api/detail/main.html接口
此外,谷歌在搜索方面也创造了奇迹。
https://stackoverflow.com/questions/7052314
复制相似问题