菜鸟教程小白 发表于 2022-12-13 08:17:54

ios - 使用 AWS SDK 2 和 Cognito 为使用 iOS SDK 2 的未授权用户将文件放在 S3 上


                                            <p><p>我想将文件上传到我的一个 S3 存储桶。</p>

<p>在我的应用中,我有:</p>

<h2>在我的应用委托(delegate)中</h2>

<pre><code>let credentialProvider = AWSCognitoCredentialsProvider(regionType: .USEast1, identityPoolId: &#34;us-east-1:05da3124-9aab-abd9-081231a31&#34;)
      let configuration = AWSServiceConfiguration(region: .USEast1, credentialsProvider: credentialProvider)
      AWSServiceManager.defaultServiceManager().defaultServiceConfiguration = configuration
</code></pre>

<h2>上传功能</h2>

<pre><code>func uploadFile(fileURL: NSURL, type: MediaType) {
    var uploadRequest = AWSS3TransferManagerUploadRequest()
    uploadRequest.body = fileURL
    uploadRequest.key = fileURL.lastPathComponent
    uploadRequest.bucket = &#34;xxx.xxx.dev&#34;
    transferManager.upload(uploadRequest).continueWithBlock { (task) -&gt; AnyObject! in
      if let error = task.error {
            log.debug(&#34;Upload failed with error: \(error)&#34;)
      } else {
            log.debug(&#34;Object \(uploadRequest.key) uploaded with \(task.result)&#34;)
            XXXRESTManager.sharedInstance.doRegisterUpload(uploadRequest.key, type: type)
      }
      return nil
    }
}
</code></pre>

<h2>附加到我的身份池中未经身份验证的角色的策略:</h2>

<pre><code>{
    &#34;Version&#34;: &#34;2012-10-17&#34;,
    &#34;Statement&#34;: [
      {
            &#34;Effect&#34;: &#34;Allow&#34;,
            &#34;Action&#34;: [
                &#34;s3: PutObject&#34;
            ],
            &#34;Resource&#34;: &#34;arn:aws:s3:::xxx.xxx.dev&#34;
      },
      {
            &#34;Effect&#34;: &#34;Allow&#34;,
            &#34;Action&#34;: [
                &#34;sns:CreatePlatformEndpoint&#34;,
                &#34;sns:Subscribe&#34;
            ],
            &#34;Resource&#34;: [
                &#34;*&#34;
            ]
      }
    ]
}
</code></pre>

<p>与 cognito 的连接正确(我现在在 AWS 控制台中有一个未经身份验证的用户。</p>

<p>但是,当我尝试上传文件时,我的权限仍然被拒绝。
我错过了什么? </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><code>AWSS3TransferManagerUploadRequest</code> 可能需要比 PutObject 更多的权限才能工作。您是否尝试过在您的策略中为 S3 授予更广泛的权限?可能它至少需要 GetObject,但首先尝试使用 <code>"Action": "s3:*"</code> 以便我们确定问题出在该部分。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用 AWS SDK 2 和 Cognito 为使用 iOS SDK 2 的未授权用户将文件放在 S3 上,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/30921173/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/30921173/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用 AWS SDK 2 和 Cognito 为使用 iOS SDK 2 的未授权用户将文件放在 S3 上