Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望使用 Filepicker.io 上传到 S3 的文件是公开的。这可能吗?
是的,您可以使存储桶本身公开访问:
或通过添加以下存储桶策略向所有人授予对您的 s3 存储桶的特定子文件夹/对象的权限:
{ "Version": "2012-10-17", "Id": "123", "Statement": [ { "Sid": "", "Effect": "Allow", "Principal": "*", "Action": "s3:**", "Resource": "arn:aws:s3:::mybucket/public/*" } ] }