使用C#与Amazon Advertising API一起进行多个ItemSearch [英] Multiple ItemSearch in one go with Amazon Advertising API using C#

查看:85
本文介绍了使用C#与Amazon Advertising API一起进行多个ItemSearch的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



任何人都请提供在C#中在ego上使用Amazon Advertising API获取多个项目查找的过程.
我完全无法执行此操作,因为在rcvd xml中收到错误:我们没有找到任何项目.".我正在使用C#查询,如下所示:

Hi,

Anyone please provide the procedure to fetch multiple item Lookups using Amazon Advertising API in on ego in C#.
I''m quite unable to do this as getting the error in rcvd xml:" we have not found any item.". I''m using C# Query like below:

string requeststring = "Service=AWSECommerceService"
+ "&Version=2009-03-31"
+ "&Operation=ItemSearch"
+ "&SearchIndex=Books"
+ "&ResponseGroup=OfferFull"
+ "&Keywords=0781750466,0077354761"
+ "&MerchantId=All"
+ "&SearchIndex=Books";
SignedRequestHelper signer=new SignedRequestHelper();
string str = signer.sign(requeststring);

推荐答案

您的请求字符串应为像这样

Your request string should be like this

String requestString = "Service=AWSECommerceService"
                   + "&Version=2009-03-31"
                   + "&Operation=ItemSearch"
                   + "&SearchIndex=Books"
                   + "&Availability=Available"
                   + "&Condition=All"
                   + "&AssociateTag="
                   + "anyAssociatevalue"
                   + "&ResponseGroup=Large"
                   + "&Keywords=" + keyword
                   ;




AssociateTag =登录电子邮件ID,由Amazon ws




AssociateTag= login EmailID which is provided by amazon ws


这篇关于使用C#与Amazon Advertising API一起进行多个ItemSearch的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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