Linked Questions
28 questions linked to/from Amazon S3 - How to fix 'The request signature we calculated does not match the signature' error?
10
votes
2
answers
9k
views
specifying the signature version of s3 client in aws sdk version 3
In aws-sdk v2 for javascript, we instantiate s3 client using:
var s3 = new AWS.S3({
accessKeyId: 'YOUR-ACCESSKEYID' ,
secretAccessKey: 'YOUR-SECRETACCESSKEY' ,
...
1
vote
5
answers
9k
views
Boto3 generate_presigned_url, SignatureDoesNotMatch error
Several questions and answers on SO and elsewhere have outlined possible solutions for resolving the SignatureDoesNotMatch error thrown when calling 'generate_presigned_url' from the boto3 SDK. Few ...
3
votes
1
answer
8k
views
upload video to aws S3
I am trying to upload a video to an S3 bucket using the API interface, I followed the presigned URL procedure, here is my lambda function that returns the presigned URL (it returns the presigned url ...
3
votes
1
answer
13k
views
SignatureDoesNotMatch The request signature we calculated does not match the signature you provided. Check your key and signing method
I got this error when I sent an HTTP post request for uploading files directly from the browser to the AWS s3 bucket. I think the problem is with calculating signature and I am not sure what data/...
1
vote
2
answers
7k
views
How to access S3 bucket through JavaScript?
I've looked at some other posts and tried to replicate what they've done, but none of them seem to be running into the same issue I am. Basically, I'm trying to store the list of keys from a S3 bucket ...
1
vote
1
answer
5k
views
Amazon S3 Error: The request signature we calculated does not match the signature you provided. Check your key and signing method
I am trying to get an object from my bucket but I always get the "signature does not match" error. I got my signature generation function from AWS sample code so I am sure that this works. I ...
1
vote
1
answer
2k
views
Image upload failed using AWS SDK V2 in GO
I am using AWS S3 service to upload images. Yesterday I updated the SDK v1 to v2 and found that the image upload is failing with the following error:
operation error S3: PutObject, https response ...
1
vote
2
answers
4k
views
AWS SES Boto3 - How to fix 'The request signature we calculated does not match the signature' error?
I'm following the example guide to send email using python and am getting an error that says "The request signature we calculated does not match the signature you provided. Check your AWS Secret ...
2
votes
1
answer
2k
views
S3Exception with AWS SDK for Java version 2 - The request signature we calculated does not match the signature you provided
I am trying to get list of object in an S3 bucket using AWS SDK for Java version 2.
Getting following exception:
software.amazon.awssdk.services.s3.model.S3Exception:
The request signature we ...
1
vote
1
answer
2k
views
NS-Vue/Rails Presigned PUT request to S3 bucket giving 403
My Front-end is a Nativescript-Vue app. Backend is Rails. I'm getting a presigned url from the rrails server and using that to send a put request on the client side to do an image upload. I've ...
1
vote
1
answer
1k
views
AWS S3 Javascript SDK v2 allows for full path but v3 does not. How can I access the files in S3 with a full path?
My application used to use AWS JavaScript SDK v2. In this version I could have a bucket name with slashes. The pattern of this bucket name is: <bucket_name>//. Essentially mocking a folder ...
0
votes
2
answers
1k
views
Error: InvalidSignature when trying to connect to SP-API amazon
I've trying to connect to amazon api for a week now. I've got stuck in this error and after readig the doc several times I can't realize which is the problem.
Here is my code:
# Copyright Amazon.com, ...
2
votes
1
answer
1k
views
ApiGateway Autogenerated SDK "The request signature we calculated does not match the signature you provided" Error
I've attempted all solutions (that appear to make sense) from:
AWS The request signature we calculated does not match the signature you provided. Check your key and signing method
And I looked through ...
0
votes
0
answers
1k
views
AWS S3 - The request signature we calculated does not match the signature
i have been having a problem for almost 3 months
I am using the react-s3 lib to upload files to AWS S3. I need to provide my bucket name, id and pw (normal). It used to work fine but since about June ...
2
votes
1
answer
960
views
S3 Upload Failing Silently in Production
I'm struggling to debug a NextJS API that is working in development (via localhost) but is silently failing in production.
Below, the two console.log statements are not returning, so I suspect that ...