gpt4 book ai didi

ruby - S3 预签名帖子需要特定的内容类型

转载 作者:数据小太阳 更新时间:2023-10-29 07:19:00 24 4
gpt4 key购买 nike

首先,我使用的是 ruby​​ 的 aws-sdk,但我面临的似乎是对 S3 预签名帖子的误解。


我希望能够做的是确保通过我的预签名帖子上传到 S3 的任何内容都是视频。

我尝试做的是在 presigned_post 散列中设置 content_type_starts_with: "video/"。这会导致所有上传都被拒绝,Policy Condition failed: ["starts-with", "$Content-Type", "video/"]

然后我只尝试了 content_type: "video/mp4",但这会导致 s3 允许上传任何文件,然后用 Content-Type: "video/mp4" 在元数据中。

然后我注意到,当我上传一个没有内容类型约束的文件时,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>

最佳答案

我刚刚遇到了一个非常相似的问题,我想我已经解决了。我希望这会有所帮助。

我意识到设置 content_type_starts_with 实际上并没有限制上传文件的类型,但它限制了表单数据中的 content-type 键实际上是什么,但您仍然需要设置表单要发布的内容类型。

因为我正在使用 JavaScript 进行客户端上传,所以我只是将其添加到我的上传代码中:formData.set('content-type', file.type) 其中 formData 是我最终发送到通过 XMLHttpRequest 服务器。

执行此操作后,上传 pdf 将开始上传但不会将文件保存在 S3 上,因为 MIME 类型限制。

如果您需要更多信息,请告诉我,我基于我的一些上传代码:http://blog.teamtreehouse.com/uploading-files-ajax

关于ruby - S3 预签名帖子需要特定的内容类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36959073/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com