Amirkhon

Results 5 comments of Amirkhon

hi @tyllark I created custom SignInButton widget with that calls signIn as you mention, but getting `NotAuthorizedServiceException { "message": "Incorrect username or password.", "underlyingException": "NotAuthorizedException {\n message=Incorrect username or password.,\n}"...

@Jordan-Nelson I implemented passwordless authentication with OTP on Amplify Gen 1. User enters phone number, receives confirmation code in SMS and signs in. Authentication flow type is `CUSTOM_AUTH` and as...

@Jordan-Nelson there is no auth resources.ts file, the project was initiated with Gen 1. It seems like there is no way to migrate the backend to Gen 2. Amplify Flutter...

@Jordan-Nelson here is a code snipped: ``` return await Amplify.Auth.signIn(username: phoneNumber, options: const SignInOptions(pluginOptions: CognitoSignInPluginOptions(authFlowType: AuthenticationFlowType.customAuthWithoutSrp) ) ); ``` I noticed that event that receives define auth challenge lambda doesn't...

@Jordan-Nelson thank you for help. `AuthenticationFlowType.customAuthWithSrp` with empty password worked.