我已经在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
}
});
无法找到任何明确说明过程的文件。