我是Node JS的初学者,她尝试在线跟踪示例并从AWS文档中学习得很好。到目前为止,我仅使用AWS提供的基于Web的lambda编辑器。以下代码给我带来麻烦,并指出“ errorMessage”:“未定义AmazonCognitoIdentity”,
有人可以建议我如何仅通过Web编辑器成功开始使用Cognito吗?
var aws = require('aws-sdk');
var CognitoUserPool = AmazonCognitoIdentity.CognitoUserPool;
exports.handler = (event, context, callback) => {
console.log("Do something here...");
}
答案 0 :(得分:2)
使用aws-sdk
const AWS = require('aws-sdk');
const cognitoIdentity = new AWS.CognitoIdentity();
cognitoIdentity.getOpenIdTokenForDeveloperIdentity(params, function (err, data)
{
//handle error and data
});