Home > database >  AWS Cognito User Pool Custom Authentication Lambdas Not Triggering
AWS Cognito User Pool Custom Authentication Lambdas Not Triggering

Time:06-11

I'm trying to implement the AWS Congito Custom Authentication flow for User pool (as suggested in their enter image description here

How do I get Cognito to start triggering my Custom Authentication lambdas?

CodePudding user response:

According to this document, they said that

Note The Amazon Cognito hosted sign-in webpage can't activate Custom authentication challenge Lambda triggers.

You have to write your own custom login flow using one of Cognito's SDKs

  • Related