AWS For Developers For Dummies
Book image
Explore Book Buy On Amazon
It would be nice if everything worked precisely as planned when making your REST call to AWS. However, a number of issues can occur that result in an error message similar to the one you see here. Note that the image isn’t complete. The key values are blocked to maintain the usability of the access keys.

Signature error message AWS Error messages can take various forms.

The problem can come from various sources. The first fix is to URL-encode the signature to ensure that special characters in the URL string don’t confuse AWS. A tool you can use to overcome this problem is the URL Decoder/Encoder. To use this tool, just paste the signature (not the entire URL) into the field and click Encode. The resulting signature doesn’t contain any special characters, but rather uses URL encoding to prevent problems.

URL-encode signature URL-encode the signature to prevent problems.

Even if you use the Amazon-supplied code snippets, the signature calculation process can also go wrong. Look again at the first image, at the StringToSign and StringToSignBytes elements. These elements tell you what AWS was expecting when it checked the signature. Of course, it still doesn’t give you a clue as to what value you should have provided for a signature. Fortunately, the Amazon Signature Tester can provide this information.

You download the Amazon Signature Tester to your hard drive. What you get is a README file and an HTML page that you load into your browser. The image below shows how the bottom of this page appears. You want to work at the bottom of the page because it contains two fields that you need to supply: the StringToSignBytes element value and your secret key.

signature testing tool The signature testing tool enables you to validate your signature code.

When you click Get Signature, you see the StringToSign element value as AWS sees it, the actual signature, and the URL-encoded signature. You use the URL encoded signature with your call to AWS. To validate this signature, simply replace the current value in the URL string with this new value. If the problem is in your signature code, the call should work as expected.

The reason you want to recheck the StringToSign element value is that AWS may see it differently than you do. For example, notice that in this case, there are three newline characters between GET and the Expires value of 1490652000. If your signature calculation code doesn’t take this requirement into consideration, the signature will be wrong. You can find additional troubleshooting aids here.

About This Article

This article is from the book:

About the book author:

John Mueller is an author and technical editor who has written 103 books. Some of his current works include Python development books. He has also written AWS For Admins For Dummies, which provides administrators a great place to start with Amazon Web Services (AWS). John has had an interest in AWS since its inception. In fact, he wrote Mining Amazon Web Services based on that humble beginning. Be sure to read John's blog at http://blog.johnmuellerbooks.com/.

This article can be found in the category: