gpt4 book ai didi

amazon-s3 - 没有为输入 HTTP 标签提供值 : Key

转载 作者:行者123 更新时间:2023-12-03 07:53:29 27 4
gpt4 key购买 nike

我正在尝试将文件发送到 s3,@aws-sdk/client-s3 我认为我一切正确,但在发送时我不断收到错误 No valueprovided输入HTTP标签:Key

这是我的 buckeparam 的 console.log

// result of console.log
the bucket {
Bucket: 'image-camlist',
Body: Blob { size: 187759, type: 'image/jpeg' },
key: 'bfbfr.jpg'
}
Error Error: No value provided for input HTTP label: Key.

它已经获得了 key bfbfr.jpg,为什么它仍然提示 key ?

最佳答案

const { S3Client, PutObjectCommand } = require(‘@aws-sdk/client-s3’);
const params = {
Bucket: "image-camlist",
Key: 'bfbfr.txt', // Pay attention to the casing of Key property
Body: 'hello world',
};

client.send(new PutObjectCommand(params));

关于amazon-s3 - 没有为输入 HTTP 标签提供值 : Key,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76597584/

27 4 0