gpt4 book ai didi

python - BOTO3 - `put_object` 的generate_presigned_url 返回 `The request signature we calculated does not match the signature you provided`

转载 作者:行者123 更新时间:2023-11-30 22:06:50 25 4
gpt4 key购买 nike

我正在尝试创建一个预签名 URL,以帮助某些客户上传文件。这是我当前正在运行的测试脚本

# Get the service client.
s3 = boto3.client('s3')
boto3.set_stream_logger(name='botocore')

# Generate the URL to get 'key-name' from 'bucket-name'
url = s3.generate_presigned_url(
ClientMethod='put_object',
Params={
'Bucket': s3_bucket_name,
'Key': test_key,
}
)

files = StringIO("asdfasdfasdf")
response = requests.put(url, data=files)

print(str(response.content))

但是如果我添加:

`ACL': 'public-read' 

Params (或者在我从服务器收到的 put_object documentation 中的信息后面添加一些元数据:

The request signature we calculated does not match the signature you provided. Check your key and signing method.
<小时/>

我还在 BOTO3 上提出了一个问题: https://github.com/boto/boto3/issues/1722

最佳答案

在 Dell ECS 对象存储上使用 S3 时遇到同样的问题。 S3 协议(protocol)已部分实现,因此不支持 ECS 的 POST 方法。解决方法是在 PUT 方法中使用正确的 header ,然后在服务器上正确设置对象的 ACL。

    # Get the service client.
s3 = boto3.client('s3')
boto3.set_stream_logger(name='botocore')

# Generate the URL to get 'key-name' from 'bucket-name'
url = s3.generate_presigned_url(
ClientMethod='put_object',
Params={
'Bucket': s3_bucket_name,
'Key': test_key,
'ACL': 'public-read'
}
)

files = StringIO("asdfasdfasdf")
headers = {'x-amz-acl': 'public-read'}
response = requests.put(url, data=files, headers=headers)

print(str(response.content))

关于python - BOTO3 - `put_object` 的generate_presigned_url 返回 `The request signature we calculated does not match the signature you provided`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52625812/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com