I am trying the Amazon Product Advertising API, following their tutorial here.

Before doing any coding, I am attempting to follow the tutorial and use the Signed Requests Helper form online to prove the concept. I enter in my Access Key ID and Secret Access Key, and then enter in the following in the Unsigned URL box:

_http://ecs.amazonaws.com/onca/xml?Service=AWSECommerceService
&Version=2010-11-01
&Operation=ItemSearch
&SearchIndex=Books
&Keywords=harry+potter

I copy and paste the contents of Signed URL box into my browser's address bar (with correct access key and signature):

_http://ecs.amazonaws.com/onca/xml?AWSAccessKeyId=[MY_ACCESS_KEY]&Keywords=harry%20potter&Operation=ItemSearch%0D&SearchIndex=Books%0D&Service=AWSECommerceService%0D&Timestamp=2011-05-30T07%3A56%3A17.000Z&Version=2010-11-01%0D&Signature=[MY_SIGNATURE]

In return I get a HTTP 500 Internal Server Error.

(Note I have inserted the unscore before both example hyperlinks as stackoverflow won't allow more than 2 hyperlinks for newbies.)

I've tried IE8, and Chrome, and have also tried the .co.uk domain as I reside in the UK. I have also looked at the AWS forum with no luck. Any help would be appreciated...

link|improve this question

50% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I have tried generating Signed URL with the page you linked to using my Access Key ID and Secret Access Key and I do get the correct response.

One thing I noticed is that your signed URL contains an extra character (%0D - newline character?) ending some of your request parameters values. Were these characters been added when you copied the sample URL in the unsigned URL input? Please try fixing the unsigned URL until these characters do not show up in the signed URL box, then try that signed URL again.

link|improve this answer
Excellent - it now works. I had copied the sample URL and pasted it into the unsigned URL box (using IE8) and these newline characters were pasted too. Removing these fixed the issue. I noticed also that pasting the sample URL into the unsigned URL input in Chrome meant no newlines characters were pasted. – barkside Jun 1 '11 at 17:31
feedback

Your Answer

 
or
required, but never shown

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