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
x
18
18
1
# Get the service client.
2
s3 = boto3.client('s3')
3
boto3.set_stream_logger(name='botocore')
4
5
# Generate the URL to get 'key-name' from 'bucket-name'
6
url = s3.generate_presigned_url(
7
ClientMethod='put_object',
8
Params={
9
'Bucket': s3_bucket_name,
10
'Key': test_key,
11
}
12
)
13
14
files = StringIO("asdfasdfasdf")
15
response = requests.put(url, data=files)
16
17
print(str(response.content))
18
But if I’m adding:
JavaScript
1
2
1
`ACL': 'public-read'
2
to Params
(or add some metadata following the information in the put_object documentation I receive back from the server:
JavaScript
1
2
1
The request signature we calculated does not match the signature you provided. Check your key and signing method.
2
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.