我正在尝试使用带有用户池的 AWS Cognito 通过我的 API 进行身份验证。我有一个通过 AWS Cognito 用户池创建的用户,我正在尝试使用该用户登录。
我得到的错误是CredentialsError: Missing credentials in config
. 具体来说,它告诉我我需要一个IdentityPoolId
. 但我似乎无法IdentityPoolId
在我的 AWS 控制台中找到它。我的用户池从哪里得到这个?我看到的只是一个 Pool id 和一个 Pool ARN。
相关源代码:
var aws = require('aws-sdk');
aws.config.update({
region: 'us-east-1',
credentials: new aws.CognitoIdentityCredentials({
IdentityPoolId: '???'
})
});
var authUser = function(params, callback)
{
if (!params || !params.Email || !params._password)
{
callback(new Error('Invalid parameters.'));
return false;
}
var cognito = new aws.CognitoIdentityServiceProvider();
var authParams = {
AuthFlow: 'USER_SRP_AUTH', // not sure what this means...
ClientId: conf.AWSConfig.ClientId,
AuthParameters: {
Username: params.Email,
Password: params._password
}
};
cognito.initiateAuth(authParams, function(err, data)
{
if (err)
{
console.log('Error details: ' + util.inspect(err));
callback(err);
return false;
}
callback(null, {success: true, data: data});
});
}
对于authParams
对象,我不确定AuthFlow
应该是什么。查看http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/CognitoIdentityServiceProvider.html#initiateAuth-property似乎USER_SRP_AUTH
是我应该使用的。
编辑:
我相信我可能已经找到了我的IdentityPoolId
. 我查看了我的部分,并在编辑身份池时Federated Identities
添加了相应User Pool
的部分。Authentication Providers
我通过输入and为该用户池将Authentication Provider
for关联Cognito
到我创建的用户池。现在使用相同的代码,我得到了错误。它说。好的...我正在尝试授权用户...我是否需要创建一个未经身份验证的角色,以便用户在未经身份验证时可以进行身份验证?如果那是我需要做的,那似乎很愚蠢。User Pool ID
App Client ID
Identity pool ID
CredentialsError: Missing credentials in config
Unauthorized access is not supported for this identity pool
编辑2:
我还应该注意,我能够登录并获得以及AccessToken
使用Javascript SDK(不是 nodejs)。我在不需要. 我唯一需要的是 a和 a 。IdToken
RefreshToken
IdentityPoolId
UserPoolId
ClientId
var authenticateUser = function(onSuccessCallback)
{
var authData = {
Username: getUserName(), // gets username from an html text field
Password: getPassword() // gets password from an html password field
};
var authDetails = new AWSCognito.CognitoIdentityServiceProvider.AuthenticationDetails(authData);
var cognitoUser = getCognitoUser();
cognitoUser.authenticateUser(authDetails,
{
onSuccess: function(result)
{
console.log('access token: ' + result.getAccessToken().getJwtToken());
console.log('idToken: ' + result.idToken.jwtToken);
console.log(result);
if (onSuccessCallback && typeof(onSuccessCallback) == 'function')
{
onSuccessCallback(cognitoUser);
}
},
onFailure: function(err)
{
// UserNotConfirmedException: User is not confirmed.
console.log('authError');
alert(err);
}
});
}