即使设置为 public aws s3 也无法查看图像 url

couldn't view image url even after setting to public aws s3

https://thestobookimages.s3.ap-south-1.amazonaws.com/mark.jpeg 此图像在我的 aws s3 存储桶中,存储桶权限设置为允许所有 public。但是还是显示访问被拒绝。

权限,

尝试访问时,

已尝试同时启用和禁用 ACL,但仍然拒绝访问

您还必须编辑存储桶策略以允许 public 读取。

   {
      "Version": "2012-10-17",
      "Statement": [
        {
          "Effect": "Allow",
          "Principal": "*",
          "Action": [
            "s3:GetObject"
          ],
          "Resource": "arn:aws:s3:::YOUR_BUCKET_NAME/*"
        }
      ]
    }