亚马逊 s3 禁止 403
我已经使用回形针将一堆文件从本地上传到亚马逊。到目前为止,访问它们没有问题,但是有一些“杂散”对象,当您访问它们时,会给您一个禁止的 403 响应。
这些文件是 mp3,如果它们的 url 返回 403 禁止,我的播放器)懦弱的播放器就会崩溃。为什么只有部分文件返回 403 是否有正当理由?如果是这样,我该如何解决?
I have uploaded a bunch of files from my local into amazon using paperclip. So far there are no problems accessing them, but there are some "stray" objects that when you access them, will give you a forbidden 403 response.
These files are mp3s and if their urls return a 403 forbidden, my player) wimpy player, crashes. IS there a valid reason why only some of the files return a 403? if so, how do i fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查这些文件的 ACL 设置。为此,请使用 AWS 控制台等 GUI。文件名的拼写是否与您想象的完全一样? - 没有多余的空格?
您是否使用带有生成的过期网址的私有文件?检查生成的查询字符串中是否不包含“无效”字符,例如
+
。我以前见过媒体播放器被其中一些窒息。Check the ACL settings for those files. Use a GUI such as the AWS console for this. Are the file names spelt exactly as you think? - no extra spaces?
Are you using private files with generated expiring urls? Check that the generated querystring doesn't have 'invalid' characters like
+
in it. I have seen media players choking on some of these before.