无法在Ionic 3中的用户池认知中从身份提供者创建用户

时间:2018-02-16 13:20:53

标签: amazon-web-services oauth-2.0 ionic3 hybrid-mobile-app federated-identity

我已经在Android混合应用程序中实现了“使用Google登录”,联盟身份正常,我正在接收accessKeyId,secretAccessKey,sessionToken。 但我想要的是,当用户使用谷歌登录时,新用户也应该在“用户池”中创建,而这个用户池现在还没有发生。

AWS.config.region = _region;
AWS.config.credentials = new AWS.CognitoIdentityCredentials({
IdentityPoolId: _IdentityPoolId, // identity pool id here
  Logins: {
    // Change the key below according to the specific region your user pool is 
       in.
    // 'cognito-idp.us-east-1.amazonaws.com/us-east-1_x7DyN3tQH':idToken,
        'accounts.google.com': _idToken // idToken received from google
       }
  });

无法找到任何明确说明过程的文件。

0 个答案:

没有答案