首先,我使用的是 ruby 的 aws-sdk,但我面临的似乎是对 S3 的预签名帖子的误解。
我想要做的是确保通过我的预先签名的帖子上传到 S3 的任何内容都是视频。
我尝试做的是content_type_starts_with: "video/"
在 presigned_post 哈希中设置。这会导致所有上传都被拒绝Policy Condition failed: ["starts-with", "$Content-Type", "video/"]
。
然后我尝试了 just content_type: "video/mp4"
,但这会导致 s3 允许上传任何文件,然后只需Content-Type: "video/mp4"
在元数据中对其进行标记。
然后我注意到,当我上传没有 Content-Type 约束的文件时,S3 会将文件标记为binary/octet-stream
. 所以我再次尝试了第一种方法,但这次使用content_type_starts_with: "binary/"
. 结果和之前一样,Policy Condition Failed
。
我应该如何使用 Content-Type 字段?它似乎从来没有做我想做的事。
这是我正在使用的代码片段:
# In the controller
client = Aws::S3::Client.new(region: 'us-east-1')
resource = Aws::S3::Resource.new(client: client)
bucket = resource.bucket("my-bucket")
object_id = SecureRandom.uuid
object = bucket.object(object_id)
@presigned_post = object.presigned_post({
acl: "private",
content_length_range: 0..104857600, # 100 MB
content_type_starts_with: "video/",
})
# In the presigned post erb
<form action="<%= presigned_post.url %>" method="post" enctype="multipart/form-data">
<% presigned_post.fields.each do |name, value| %>
<input type="hidden" name="<%= name %>" value="<%= value %>"/>
<% end %>
<input type="file" name="file" accept="*.mp4,*.ogg,video/*" />
<input type="submit">
</form>