开发者

Multiple Offers from Amazon Products API

开发者 https://www.devze.com 2023-02-16 20:24 出处:网络
I\'ve been working recently with the Amazon Products API, and I had a question for anyone out there with experience using it. Is it possible using one of the responseGroups 开发者_JAVA技巧to get a ful

I've been working recently with the Amazon Products API, and I had a question for anyone out there with experience using it. Is it possible using one of the responseGroups 开发者_JAVA技巧to get a full listing of all offers in the Amazon marketplace?

For example, one product might have 37 offers in the marketplace, but in every API call I've performed, I never seem to be able to get anything other than the Amazon.com price and the price of the lowest cost marketplace item.

Is there any way to get all 37 offers?


Yes, this is possible. I use the ItemLookup operation and with that I use the ResponseGroup "OfferFull". That will return up to 10 offers. You'll have to loop to get the next set of offers until you've got them all.

In the Offers object (inside ItemLookupResponse that you get back), you'll see a property called "TotalOfferPages" that will tell you how many pages of 10 offers. Just put a check inside a loop for this value and accumulate the Offers into a collection.

Amazon Documentation:

http://docs.amazonwebservices.com/AWSECommerceService/latest/DG/

If you use C# and want to use WCF, read this:

http://flyingpies.wordpress.com/2009/08/01/17/

Hope this helps, Scott

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号