issue 2
(Error: SignatureDoesNotMatch) commented on by jean.jordaan
- Perhaps http://developer.amazonwebservices.com/connect/message.jspa?messageID=77430
is relevant. From there:
"""
hmac = OpenSSL::HMAC.digest(digest, AWS_SECRET_ACCESS_KEY, content)
@signature = Base64.encode64 (hmac).chomp
[...]
I think you need to URI encode the signature, would explain the occasional signature
failure.
[...]
that sorted it out, now my queries run without breaking.
"""
Perhaps http://developer.amazonwebservices.com/connect/message.jspa?messageID=77430
is relevant. From there:
"""
hmac = OpenSSL::HMAC.digest(digest, AWS_SECRET_ACCESS_KEY, content)
@signature = Base64.encode64 (hmac).chomp
[...]
I think you need to URI encode the signature, would explain the occasional signature
failure.
[...]
that sorted it out, now my queries run without breaking.
"""
Jun 29, 2009
issue 2
(Error: SignatureDoesNotMatch) reported by jean.jordaan
- Hi there
I try to run sss-delete-bucket as follows:
$ AWS_KEY=xxx AWS_SECRET=yyyyyy ~/bin/sss-delete-bucket asdf-xxx-bucketid
The result is:
Error: SignatureDoesNotMatch - The request signature we calculated does not
match the signature you provided. Check your key and signing method.
Deleting buckets using jets3t's cockpit tool works fine with the same
key/secret.
Hi there
I try to run sss-delete-bucket as follows:
$ AWS_KEY=xxx AWS_SECRET=yyyyyy ~/bin/sss-delete-bucket asdf-xxx-bucketid
The result is:
Error: SignatureDoesNotMatch - The request signature we calculated does not
match the signature you provided. Check your key and signing method.
Deleting buckets using jets3t's cockpit tool works fine with the same
key/secret.