我正在尝试使用分段上传将 PDF 文件上传到 AWS S3。但是,当我发送PUT
上传部件的请求时,我收到 SignatureDoesNotMatch 错误。
<Error><Code>SignatureDoesNotMatch</Code><Message>The request signature we calculated does not match the signature you provided. Check your key and signing method.</Message>
我的服务器代码(节点)如下:
CREATE MultiPart Upload
const AWS = require('aws-sdk');
AWS.config.region = 'us-east-1';
const s3 = new AWS.S3({ apiVersion: '2006-03-01' });
const s3Params = {
Bucket: 'bucket-name',
Key: 'upload-location/filename.pdf',
}
const createRequest = await s3.createMultipartUpload({
...s3Params
ContentType: 'application/pdf'
}).promise();
GET Signed URL
let getSignedUrlParams = {
Bucket: 'bucket-name',
Key: 'upload-location/filename.pdf',
PartNumber: 1,
UploadId: 'uploadId',
Expires: 10 * 60
}
const signedUrl = await s3.getSignedUrl('uploadPart',getSignedUrlParams);
客户端代码(在 JS 中)是:
const response = await axios.put(signedUrl, chunkedFile, {headers: {'Content-Type':'application-pdf'}});
需要注意的几点:
- 当我允许对存储桶的所有公共访问时,此代码有效。但是,如果所有公共访问都被阻止,则代码不起作用。
- 在所有公共访问被阻止的情况下,我仍然可以使用 aws cli 使用相同的凭据上传到存储桶。
- 我已经尝试重新生成 AWS 访问密钥 ID 和秘密访问密钥,但没有帮助。
无法弄清楚问题所在。任何帮助,将不胜感激。
PS:这是我在这里发布的第一个问题。因此,如果我没有适当地发布它,请原谅我。如果需要更多详细信息,请告诉我。