Я пытался проверить электронную почту пользователя с помощью getAttributeVerificationCode Api в Amazon Cognito.Это мой код.
cognitoUser.getAttributeVerificationCode('email', {
onSuccess: function (result) {
// console.log("type",typeof params.AttributeName);
console.log('call result: ' + result)
response = {
statusCode: 200,
body: JSON.stringify({ message: 'onSuccess' }),
headers: {
'Content-Type': 'application/json'
}
}
callback(null, response)
},
onFailure: function (err) {
// console.log(err)
response = {
statusCode: 200,
body: JSON.stringify({ message: err.message }),
headers: {
'Content-Type': 'application/json'
}
}
callback(null, response)
},
inputVerificationCode: function () {
// var verificationCode = prompt('Please input verification code: ' ,'');
// cognitoUser.verifyAttribute('email', verificationCode, this);
console.log('verification code')
}
})
Это показывает ошибку «Неверный вывод лямбда-функции: Неверный JSON».Любая помощь будет оценена.