Skip to content
Advertisement

BOTO3 – generate_presigned_url for `put_object` return `The request signature we calculated does not match the signature you provided`

I’m trying to create a presigned url that will help some customers to upload files . Here my test script that is currently working

JavaScript

But if I’m adding:

JavaScript

to Params (or add some metadata following the information in the put_object documentation I receive back from the server:

JavaScript

I’ve open also a issue on BOTO3: https://github.com/boto/boto3/issues/1722

Advertisement

Answer

This is covered in the github issue https://github.com/boto/boto3/issues/934

For uploading an object, you should use generate_presigned_post. There are several parameters that cannot be embedded within the url, and those are returned to you by that method.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement