我试图在我的lambda函数中列出我所有的cognito用户,但是在返回中什么也没得到,好像没有执行回调。我在做什么错了?
下面的代码输出仅在控制台上向我打招呼。
var AWS = require("aws-sdk");
const cognitoidentityserviceprovider = new AWS.CognitoIdentityServiceProvider();
export async function main() {
console.log("hello")
var params = {
UserPoolId: "myuserpoolid",
AttributesToGet: ["username"]
};
cognitoidentityserviceprovider.listUsers(params, (err, data) => {
if (err) {
console.log(err, err.stack);
return err;
} else {
console.log(data);
return data;
}
});
}
答案 0 :(得分:1)
首先,代码的结构是错误的。 Lambda函数的标头应具有一定的结构,可以使用异步函数或非异步函数。由于您在示例中使用的是非异步代码,因此我将在稍后向您展示如何进行操作。
var AWS = require("aws-sdk");
const cognitoidentityserviceprovider = new AWS.CognitoIdentityServiceProvider();
exports.handler = function(event, context, callback) {
console.log("hello")
var params = {
UserPoolId: "myuserpoolid",
AttributesToGet: ["username"]
};
cognitoidentityserviceprovider.listUsers(params, (err, data) => {
if (err) {
console.log(err, err.stack);
callback(err) // here is the error return
} else {
console.log(data);
callback(null, data) // here is the success return
}
});
}
在这种情况下,Lambda仅在调用callback
(或超时)时结束。
类似地,您可以使用异步功能,但需要相应地重组代码。这是取自official docs的示例。请注意如何使用Promise包装器。
const https = require('https')
let url = "https://docs.aws.amazon.com/lambda/latest/dg/welcome.html"
exports.handler = async function(event) {
const promise = new Promise(function(resolve, reject) {
https.get(url, (res) => {
resolve(res.statusCode)
}).on('error', (e) => {
reject(Error(e))
})
})
return promise
}
答案 1 :(得分:0)
对于 AttributesToGet,不要使用用户名,因为它是总是返回的字段之一。以下是 Attributes 数组的成员,可以在 AttributesToGet 字段中使用:
sub、email_verified、phone_number_verified、phone_number、email。
例如
AttributesToGet: ["email","email_verified"]