【以下的问题经过翻译处理】 我正试图使用 AWS Cognito 创建一个自定义身份验证流程,以便通过电子邮件发送 MFA 代码,而不是通过 Cognito 触发器。我正在使用 initiateAuth() 方法来实现这一功能,根据文档,该方法是正确的;
https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_InitiateAuth.html
https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/CognitoIdentityServiceProvider.html#initiateAuth-property
我的payload似乎是有效的,但当我尝试使用用户登录时,我收到错误消息“t.getauthparameters is not a function”
我查看了一些其他的stackoverflow帖子,但没有帮助
有没有什么想法出了什么问题?
以下是我的代码片段:
const payload = {
AuthFlow: 'CUSTOM_AUTH',
ClientId: 'my client id',
AuthParameters: {
USERNAME: $('input[name=username]').val(),
PASSWORD: $('input[name=password]').val(),
CHALLENGE_NAME: 'SRP_A'
}
};
cognitoUser.initiateAuth(payload, {
onSuccess: function(result) {
// User authentication was successful
},
onFailure: function(err) {
// User authentication was not successful
},
customChallenge: function(challengeParameters) {
// User authentication depends on challenge response
var verificationCode = prompt('Please input OTP code' ,'');
cognitoUser.sendCustomChallengeAnswer(verificationCode, this);
},
});