3

我正在尝试使用 AWS Cognite 用户池使用 AppleId for iOS 应用程序登录。我们不能使用联合身份,我必须使用用户池。登录用户池时,我在 iOS 应用程序中使用托管 UI。我已经在 Aws 和 iOS 应用程序上设置了服务配置,如下所示。当我尝试登录用户池时,在 WebView 中出现“请求的页面遇到错误”错误。

let hostedUIOptions = HostedUIOptions(identityProvider: "SignInWithApple")

    AWSMobileClient.default().showSignIn(navigationController: self.navigationController!, hostedUIOptions: hostedUIOptions) { (userState, error) in
        if let error = error as? AWSMobileClientError {
            print(error.localizedDescription)
        }
        if let userState = userState {
            print("Status: \(userState.rawValue)")
        }
    }

AWSConfiguration.json

{
"IdentityManager": {
    "Default": {}
},

"CognitoUserPool": {
    "Default": {
        "PoolId": "eu-west-1_rsPBto6Jx",
        "AppClientId": "6atv5t6egacicor9cioXXXXXX",
        "AppClientSecret": "171du4k8rf098lmnuvhm2h3o1umqcdfnngcj84tc304moXXXXXXXX",
        "Region": "us-east-2"
    }
},
"Auth": {
       "Default": {
           "OAuth": {
               "WebDomain": "XXXXX.auth.us-east-2.amazoncognito.com",
               "AppClientId": "6atv5t6egacicor9cioXXXXXX",
               "AppClientSecret": "171du4k8rf098lmnuvhm2h3o1umqcdfnngcj84tc304moXXXXXXXX",
               "SignInRedirectURI": "myapp://",
               "SignOutRedirectURI": "myapp://",
               "Scopes": ["openid", "email","aws.cognito.signin.user.admin","profile","phone"]
           }
       }
   }

}

我怎么解决这个问题?

解决方案

当我在 consol myapp://sigout 中添加回调 url 时,问题解决了。这是我的错误。

4

0 回答 0