The user pool on my AWS account is set to require user confirmation, However it looks for me like each time I try to log in a user this exception called "CognitoUserConfirmationNecessaryException" is thrown even though the user verified and been used normally through other systems to login.
Based on this code in the library
if (dataConfirm['UserConfirmationNecessary'] == true) { throw CognitoUserConfirmationNecessaryException( signInUserSession: _signInUserSession); }
Placed at line 196 in cognito_user.dart file, it looks like it will through the exception all the times when the user pool required data confirmation.
The user pool on my AWS account is set to require user confirmation, However it looks for me like each time I try to log in a user this exception called "CognitoUserConfirmationNecessaryException" is thrown even though the user verified and been used normally through other systems to login.
Based on this code in the library
if (dataConfirm['UserConfirmationNecessary'] == true) { throw CognitoUserConfirmationNecessaryException( signInUserSession: _signInUserSession); }
Placed at line 196 in cognito_user.dart file, it looks like it will through the exception all the times when the user pool required data confirmation.Am I missing something here?
Thanks.