如何使用Lambda函数和AWS Cognito对用户进行身份验证?

时间:2017-02-15 20:59:06

标签: aws-lambda aws-cognito

我正在尝试使用AWS中Node.js编写的Lambda函数对用户进行身份验证。我现在被困住了。 以下代码无法按预期工作:

var AWS = require('aws-sdk');
exports.handler = (event, context, callback) => {
    AWS.config.region = 'us-east-1';
      var authenticationData = {
        Username : 'username',
        Password : 'password',
    };
    var authenticationDetails = new AWS.CognitoIdentityServiceProvider.AuthenticationDetails(authenticationData);
    var poolData = { UserPoolId : 'My-Pool-Id',
        ClientId : 'My-Client-Id'
    };
    var userPool = new AWS.CognitoIdentityServiceProvider.CognitoUserPool(poolData);
    var userData = {
        Username : 'username',
        Pool : userPool
    };
    var cognitoUser = new AWS.CognitoIdentityServiceProvider.CognitoUser(userData);
    cognitoUser.authenticateUser(authenticationDetails, {
        onSuccess: function (result) {
            console.log('access token + ' + result.getAccessToken().getJwtToken());
           
            console.log('idToken + ' + result.idToken.jwtToken);
        },

        onFailure: function(err) {
            alert(err);
        },

    });

};

上面的代码在Cognito Documentation page

中提供

但我得到的是以下错误:

TypeError: AWS.CognitoIdentityServiceProvider.AuthenticationDetails is not a function

有没有人对我现在该做什么有所了解? 感谢

1 个答案:

答案 0 :(得分:1)

您正在使用AWSCognito,但未定义。将其更改为AWS

您是否正在尝试为cognito撰写包装器?您可以在客户端而不是Lambda中执行此身份验证。