How do I interact with the Amazon Product Advertising API in my Rails app?

4.5k views Asked by At

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.

5

There are 5 answers

3
Bill Turner On

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.

0
Carlos On

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

0
Pablo Fernandez On

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.

1
umassthrower On

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.

0
Reed G. Law On

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