How can I make a S3 bucket public (the amazon example policy doesn't work)?
问题 Amazon provides an example for Granting Permission to an Anonymous User as follows (see Example Cases for Amazon S3 Bucket Policies): { "Version": "2008-10-17", "Statement": [ { "Sid": "AddPerm", "Effect": "Allow", "Principal": { "AWS": "*" }, "Action": "s3:GetObject", "Resource": "arn:aws:s3:::bucket/*" } ] } Within my policy I've changed "bucket" in ""arn:aws:s3:::bucket/" to "my-bucket". However, once I try to access an image within a folder of that bucket, I get the following Access