我正在尝试从浏览器将图像上传到数字海洋空间。这些图像应该是公开的。我能够成功上传图片。
但是,虽然 ACL 设置为public-read
,但上传的文件始终是 private。
我知道它们是私有的,因为 a)仪表板说权限是“私有的”,b)因为公共 url 不起作用,c)在仪表板中手动将权限更改为“公共”可以解决所有问题。
这是我正在使用的整个过程。
- 在后端创建一个预签名的 URL
- 将该网址发送到浏览器
- 将图像上传到该预签名的网址
任何想法为什么图像不公开?
代码
以下示例使用 TypeScript 编写并使用 AWS 的 v3 开发工具包。
后端
这会生成预签名的 url 以上传文件。
import { S3Client, PutObjectCommand } from '@aws-sdk/client-s3'
import { getSignedUrl } from '@aws-sdk/s3-request-presigner'
const client = new S3Client({
region: 'nyc3',
endpoint: 'https://nyc3.digitaloceanspaces.com',
credentials: {
accessKeyId: process.env.DIGITAL_OCEAN_SPACES_KEY,
secretAccessKey: process.env.DIGITAL_OCEAN_SPACES_SECRET,
},
})
const command = new PutObjectCommand({
ACL: 'public-read',
Bucket: 'bucket-name',
Key: fileName,
ContentType: mime,
})
const url = await getSignedUrl(client, command)
然后将预签名的 url 发送到浏览器。
前端
这是客户端上实际将文件上传到 Digital Ocean 的代码。file
是一个文件对象。
const uploadResponse = await fetch(url, {
headers: {
'Content-Type': file.type,
'Cache-Control': 'public,max-age=31536000,immutable',
},
body: file,
method: 'PUT',
})
元数据
- AWS 开发工具包:3.8.0