0002-00000419

更新时间:
复制 MD 格式

Problem description

The X-Amz-SignedHeaders parameter is missing from the request parameters.

Causes

Your request uses an Amazon S3-compatible V4 signature, but the X-Amz-SignedHeaders parameter is missing.

Examples

Your request includes a signature in the URL parameters, but the X-Amz-SignedHeaders parameter is missing.

GET /test.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=LTAI****************/20221220/us-east-1/s3/aws4_request&X-Amz-Date=20221220T084818Z&X-Amz-Expires=86400&X-Amz-Signature=ab2***st HTTP/1.0
Date: Tue, 20 Dec 2022 08:48:18 GMT
Host: oss-example.oss-cn-hangzhou.aliyuncs.com
x-oss-s3-compat: true

The X-Amz-SignedHeaders parameter specifies the request headers to include in the signature.

Solutions

Add the X-Amz-SignedHeaders parameter to the URL parameters. Make sure all URL parameters are complete and correct. The following example shows a valid request:

GET /test.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=LTAI****************/20221220/us-east-1/s3/aws4_request&X-Amz-Date=20221220T084818Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=ab2s**** HTTP/1.0
Date: Tue, 20 Dec 2022 08:48:18 GMT
Host: oss-example.oss-cn-hangzhou.aliyuncs.com
x-oss-s3-compat: true

We recommend that you use Amazon S3 SDKs to initiate the request. For more information, see Use Amazon S3 SDKs to access OSS.