I would like to get the link of a particular movie/dvd in amazon given a movie/dvd title. This link will redirect to amazon's website. How can I do this?

link|improve this question
feedback

1 Answer

It depends on how you want to do this. For example, I use C# to connect to the web services API. I then search for an ISBN number and use the first found item (if there is one) since that will be the book I want. You could adjust this to search the movies based on a particular title. Here is a link to the site I found for connecting to the Amazon web services: http://flyingpies.wordpress.com/2009/08/01/17/

You will need to sign up for an Amazon Associates account in order to do these lookups. You could also use their RESTful services to get the data in XML format instead. Here is the Amazon link for how to set up a RESTful request: http://docs.amazonwebservices.com/AWSECommerceService/latest/GSG/index.html?SubmittingYourFirstRequest.html

link|improve this answer
I wish to use their RESTful services and provide them with a movie title – Alexander May 2 '11 at 4:14
I added a link to the RESTful documentation. – BiggsTRC May 2 '11 at 4:25
feedback

Your Answer

 
or
required, but never shown

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