ily*_*lyo 4 policy amazon-s3 amazon-web-services amazon-cognito
我有一个应用程序,用户可以使用 Facebook 登录,然后可以将图像上传到 s3 存储桶并查看它们。我使用 Cognito 服务允许每个登录的用户上传和查看所有文件。
我不知道如何在 s3 存储桶上设置正确的权限。这是我的尝试,但我无法保存政策并获得Statement is missing required element - Statement "NO_ID-0" is missing "Principal" element
{
"Version": "2012-10-17",
"Id": "Policy1457546546214",
"Statement": [
{
"Sid": "Stmt1475657256771436",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::bucket-name/*"
},
{
"Sid": "Stmt16577654572138125",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:PutObject",
"Resource": [
"bucket-name/identity-pool-id*"
]
}
]
}
Run Code Online (Sandbox Code Playgroud)
这是客户端部分,如果有帮助的话:
FB.login(function (response) {
if (response.authResponse) {
AWS.config.region = 'eu-west-1';
AWS.config.credentials = new AWS.CognitoIdentityCredentials({
IdentityPoolId: 'eu-west-1:xxxxxxxxxxx',
Logins: {
'graph.facebook.com': response.authResponse.accessToken
}
})
var bucket = new AWS.S3({params: {Bucket: 'name'}})
var fileChooser = document.getElementById('file-chooser')
var button = document.getElementById('upload-button')
button.addEventListener('click', function() {
var file = fileChooser.files[0]
var params = {Key: file.name, ContentType: file.type, Body: file}
bucket.upload(params, function (err, data) {
...
Run Code Online (Sandbox Code Playgroud)
认知IAM > Roles > Cognito_myappAuth_Role:
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"cognito-identity:*"
],
"Effect": "Allow",
"Resource": [
"*"
]
},
{
"Effect": "Allow",
"Action": [
"s3:GetObject",
"s3:PutObject",
"s3:PutObjectAcl"
],
"Resource": [
"arn:aws:s3:::bucket/${cognito-identity.amazonaws.com:sub}/*",
"arn:aws:s3:::bucket/${cognito-identity.amazonaws.com:sub}"
]
}
]
}
Run Code Online (Sandbox Code Playgroud)
你看过这篇博文吗?它有一个很好的示例,说明如何设置允许用户访问 S3 存储桶的角色。去掉列表存储区部分,您将链接到身份池角色的访问策略可能如下所示:
{
"版本": "2012-10-17",
“陈述”: [
{
“行动”: [
"s3:GetObject",
“s3:放置对象”
],
"Effect": "允许",
"资源": ["arn:aws:s3:::mybucket/${cognito-identity.amazonaws.com:sub}/*"]
}
]
}
编辑:
Tl; dr来自未来读者的评论:
将策略应用于池的身份验证角色而不是存储桶
如果应用用例需要公共区域,请使用存储桶根目录,否则为策略中定义的每个身份使用一个目录(如博客中所述)
角色本身在身份验证发生后才适用。该策略仅定义返回的凭据将有权执行哪些操作以及执行哪些操作。
| 归档时间: |
|
| 查看次数: |
5943 次 |
| 最近记录: |