I'm building a Rails web app and was wondering what is the best way to get a list of products that Amazon would return based on a search term?

For example, if I sent amazon the term "iphone", I'd get a list of iphones back from Amazon.

Does anyone know if there's a gem or library for Rails out there that would fit this need?

link|improve this question
feedback

6 Answers

I've always used the amazon-ecs gem. Despite the name, it looks like it's still under active development (last updated August 27th, 2009).

http://github.com/jugend/amazon-ecs

Here is a blog post that might help you on your way:

http://www.pluitsolutions.com/projects/amazon-ecs

link|improve this answer
feedback

So the Ruby/AWS library is the way to go. There is a pretty good tutorial here

Pablo, ruby-aaws worked nearly out of the box for me. I just had to setup a .amazonrc file with the configuration options like my amazon affiliate id and AWS public and secret keys.

link|improve this answer
1  
ohh yea, and the maintainer seems to still be maintaining this API as of this spring (2010) at least. – umassthrower Jul 13 '10 at 3:20
feedback

The Ruby/AWS library (gem: ruby-aaws) seems to do it. Not much in the way of examples, but with some code searches I'm sure you can turn up something.

link|improve this answer
Yes ruby-aws will do it. It may take a bit of experimenting to get the exact results you want. For example, there are various types of results and not all the types will return the price. – Jim Oct 19 '09 at 4:54
I've tried for a couple of hours wit ruby-aaws but amazon-ecs worked out of the box on the first try. – J. Pablo Fernández Nov 27 '09 at 8:28
there are a number of examples in the gem code in the examples directory... at least a dozen, with comments – umassthrower Jul 17 '10 at 5:38
feedback

Another pottential library to do this is amazon-product-advertising-api, but I cannot say anything else about it as I haven't tried it.

link|improve this answer
feedback

I second Ruby/AWS. It has support for ListSearch and ListLookup. Amazon-ecs has comparatively less support for the API.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.