Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
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:
C#
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);
Posted
Updated 3-Nov-11 21:49pm
v3

1 solution

Your request string should be like this

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



AssociateTag= login EmailID which is provided by amazon ws
 
Share this answer
 
Comments
Sunny_Kumar_ 4-Nov-11 5:07am    
Thanks for your support.
I'm quite able to fetch the response but for one item in one go. I want to pass multiple items and receive the response for them all in one go.

Any help is appreciated.

Thanks,
Sunny.
Syed Salman Raza Zaidi 4-Nov-11 7:08am    
Chk your Response XML, as i m getting my response in XML format

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900