gpt4 book ai didi

ios - AWS 认知错误 : Authentication delegate not set

转载 作者:搜寻专家 更新时间:2023-10-31 22:31:59 25 4
gpt4 key购买 nike

我正在使用 XCode 7.3 在 Swift 中开发一个 iOS 应用程序。该应用程序与 DynamoDB 数据库通信,允许用户读取和写入数据。最近,我更新了我的 pod,其中包括 AWSDynamoDBAWSCognitoAWSCognitoIdentityProvider 和其他 AWS pod。我还根据此页面上的说明设置了一个新的用户池:

http://docs.aws.amazon.com/cognito/latest/developerguide/amazon-cognito-integrating-user-pools-with-identity-pools.html

作为遵循这些说明的一部分,我将以下代码放入 AppDelegate 类的 didFinishLaunchingWithOptions 方法中:

let serviceConfiguration = AWSServiceConfiguration(region: .USEast1, credentialsProvider: nil)
let userPoolConfiguration = AWSCognitoIdentityUserPoolConfiguration(clientId:APP_CLIENT_ID, clientSecret: appSecret, poolId: USER_POOL_ID)
AWSCognitoIdentityUserPool.registerCognitoIdentityUserPoolWithConfiguration(serviceConfiguration, userPoolConfiguration: userPoolConfiguration, forKey: USER_POOL_NAME)
let pool = AWSCognitoIdentityUserPool(forKey:USER_POOL_NAME)
let credentialsProvider = AWSCognitoCredentialsProvider(regionType: .USEast1, identityPoolId: IDENTITY_POOL_ID, identityProviderManager:pool)
let configuration = AWSServiceConfiguration(region:.USEast1, credentialsProvider:credentialsProvider)
AWSServiceManager.defaultServiceManager().defaultServiceConfiguration = configuration

我通过从 AWS 控制台导航到 Cognito、Federated Identities、我在按照说明“编辑身份池”时创建的身份池,然后复制字符串,获得了 IDENTITY_POOL_ID 的值显示在“身份池 ID”旁边。我通过展开同一页面上的“身份验证提供程序”并选择“Cognito”选项卡获得了 APP_CLIENT_ID 的值。对于 USER_POOL_NAME,我在此页面上使用了“身份池名称”,对于 USER_POOL_ID,我使用了“身份验证提供程序”下列出的“用户池 ID”值。我不清楚我是否正确设置了这些值,因为我不完全确定开发人员指南说我应该使用哪些值。

更新 pod 并进行这些更改后,当我运行应用程序时,我看到错误:

[错误] AWSCredentialsProvider.m 行:569 | __44-[AWSCognitoCredentialsProvider 凭证]_block_invoke.345 |无法刷新。错误是 [Error Domain=com.amazonaws.AWSCognitoIdentityProviderErrorDomain Code=-1000 "Authentication delegate not set"UserInfo={NSLocalizedDescription=Authentication delegate not set}]

现在也无法访问 DynamoDB 数据,但该应用程序仍会启动。我怀疑部分问题是我的 DynamoDB 数据库不在 USEast 中,但我不确定这是否真的会导致此错误。除了更改 AppDelegate 中的代码外,我还尝试查找导致此错误的可能原因,但错误仍然存​​在。我可以调查哪些可能的原因?如果它有所作为,除了恢复 DynamoDB 功能外,我还尝试允许应用程序授权用户,并且我希望在解决此问题的过程中完成这两项工作。

最佳答案

看起来您在尝试让用户注册或登录时遇到的问题。在您的示例代码中,您没有设置 pool.delegate 值。这一行应该在你的 AppDelegate 中

pool.delegate = self

这也应该实现 AWSCognitoIdentityInteractiveAuthenticationDelegate

这篇博文应该可以帮助您入门: https://mobile.awsblog.com/post/TxGNH1AUKDRZDH/Announcing-Your-User-Pools-in-Amazon-Cognito

示例应用程序也可能有帮助 https://github.com/awslabs/aws-sdk-ios-samples/blob/75ada5b6283b7c04c1214b2e1e0a6394377e3f2b/CognitoYourUserPools-Sample/Objective-C/CognitoYourUserPoolsSample/AppDelegate.h

关于ios - AWS 认知错误 : Authentication delegate not set,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37666758/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com