multi-factor

Flow for authentication when MFA required for user in AWS Cognito

|▌冷眼眸甩不掉的悲伤 提交于 2020-01-01 09:39:12
问题 I am attempting to add MFA for user authentication to an already existing solution (built in Angular) for device management within AWS Cognito. I am having trouble figuring out how to handle this particular response well from a user-experience perspective. It actually feels broken, so would love if anyone else has experience pain points here. See Use Case 23. for example implementation, mine is below: authenticate(username: string, password: string): Observable<any> { // init cognitoUser here

Flow for authentication when MFA required for user in AWS Cognito

情到浓时终转凉″ 提交于 2020-01-01 09:39:08
问题 I am attempting to add MFA for user authentication to an already existing solution (built in Angular) for device management within AWS Cognito. I am having trouble figuring out how to handle this particular response well from a user-experience perspective. It actually feels broken, so would love if anyone else has experience pain points here. See Use Case 23. for example implementation, mine is below: authenticate(username: string, password: string): Observable<any> { // init cognitoUser here

Azure MFA in Cordova app that uses JWT OAuth 2.0 tokens

我怕爱的太早我们不能终老 提交于 2019-12-24 08:26:04
问题 I am developing a Cordova app that has (until now) used a password grant to retrieve JWTs from Microsoft's standard OAuth provider in Azure: https://login.microsoftonline.com/[tenant]/oauth2/token It works fine. However, we are opening up our application to outside traders, and the owner wants MFA added. So, I have created an MFA provider in Azure, I have enabled a test account for MFA. I am currently opening the redirect request using the InAppBrowser plugin - which seems to work - it opens

Windows Credential Provider Implementation

限于喜欢 提交于 2019-12-11 07:42:17
问题 This is a question related to Windows Credential Provider Implementation I want to follow up to this question. We have a custom MFA solution that prompts for sms/pin after windows has finished authentication before letting the user in. Unfortunately on windows 2016 and windows 10,winLogon.exe does not wait for the custom mfa solution prompt to close if there is no activity, it just happens to log the user in, defeating the purpose of having a mfa prompt. I have deployed a custom credential

Flow for authentication when MFA required for user in AWS Cognito

我是研究僧i 提交于 2019-12-04 05:19:56
I am attempting to add MFA for user authentication to an already existing solution (built in Angular) for device management within AWS Cognito. I am having trouble figuring out how to handle this particular response well from a user-experience perspective. It actually feels broken, so would love if anyone else has experience pain points here. See Use Case 23. for example implementation, mine is below: authenticate(username: string, password: string): Observable<any> { // init cognitoUser here return new Observable((observer) => { cognitoUser.authenticateUser(authenticationDetails, { onSuccess:

http 400: size of header request is too long when signing in user using Multifactor authentication

对着背影说爱祢 提交于 2019-12-01 19:37:40
I am trying out the Azure AD-B2C. The user signup/sign in is fine when the MFA is turned off. But when I turn it on, and the user tries to sign in and provides the phone number, and requests a text message by clicking "send code", I get the Http 400 error: size of request headers is too long. Anybody else have this issue? The error HTTP 400: Size of header request is too long generally happens because there's too many cookies. Azure AD B2C's login goes through login.microsoftonline.com, as does almost every Microsoft service (O365, Azure, etc). So if you've got several accounts that you've

http 400: size of header request is too long when signing in user using Multifactor authentication

允我心安 提交于 2019-12-01 17:42:01
问题 I am trying out the Azure AD-B2C. The user signup/sign in is fine when the MFA is turned off. But when I turn it on, and the user tries to sign in and provides the phone number, and requests a text message by clicking "send code", I get the Http 400 error: size of request headers is too long. Anybody else have this issue? 回答1: The error HTTP 400: Size of header request is too long generally happens because there's too many cookies. Azure AD B2C's login goes through login.microsoftonline.com,