为什么我会在s3上显示图像时得到403 frobidden?

我正尝试从本地存储迁移到Amazon S3。 但是现在,当我尝试通过我的网站上的s3 url显示图像时,我得到了一个403禁止的错误。 作为公共访问的存储桶,我在存储桶上具有以下CORS配置:

<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
    <AllowedOrigin>*</AllowedOrigin>
    <AllowedMethod>GET</AllowedMethod>
    <MaxAgeSeconds>3000</MaxAgeSeconds>
    <AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration>

我错过了什么?

链接地址: http://www.djcxy.com/p/93549.html

上一篇: Why am I getting 403 frobidden while displaying images on s3?

下一篇: How to access image by url on s3 using boto3?