简体   繁体   中英

How can I disable the email verification on reset password using Azure AD B2C?

How can I disable the email verification on reset password using Azure AD B2C?

I want to skip the email verification on the reset password user journey and instead I want to make an API call to my own API before allowing the user to define I new password.

Note: I am using custom policies.

Does anyone know how to do that?

"PasswordReset" calls "LocalAccountDiscoveryUsingEmailAddress".

That has:

<OutputClaim ClaimTypeReferenceId="email" PartnerClaimType="Verified.Email" Required="true" />

The "Verified.Email" is the piece that kicks off the validation.

Remove it and call your Rest API as another step in the user journey.

The actual password functionality is done by the next step "LocalAccountWritePasswordUsingObjectId".

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM