Questions tagged [azure-ad-b2c-custom-policy]

Azure AD B2C custom policies are configuration files for defining Azure AD B2C tenant. They are commonly used for addressing complex scenario that cannot be addressed through user flows.

Sample scenarios https://github.com/azure-ad-b2c/samples/tree/master#sample-scenarios

To provide product feedback, visit the Azure Active Directory B2C Feedback page.

1054 questions
0
votes
1 answer

How can I see data for users created by a custom policy?

I have Signup and Sinin custom policy that allow users to signup or signin. It works well. The policy uses the following claims:
Allan Xu
  • 7,998
  • 11
  • 51
  • 122
0
votes
0 answers

Is it possible to parameterize ClaimsProvider & TechnicalProfile at runtime in a custom B2C policy?

Is it possible to parameterize ClaimsProvider & TechnicalProfile at runtime in a custom B2C policy? For example, is it possible to make string substitutions or use variables/claims for XML value like the Metadata Item?
solidstore
  • 105
  • 1
  • 14
0
votes
1 answer

Securing internal step of a custom policy

I'm new to b2c so excuse me if my question is about something obvious. There is a custom policy that is used for set password after registration. The policy is working fine and updates the password. If the same link is used again in the browser the…
zeki
  • 18
  • 3
0
votes
1 answer

Azure AD B2C ProfileEdit policy

I working with azure ad b2c, and now i want to change user'email. Is it possible to allow users to edit their profile email in edit profile ?? Now my mobile app can change user'name even so reset password.
0
votes
1 answer

signInName exist in JWT, but I can't signin with that

I created the claim signInName.username, put there in TP Write and Read, SignUp journey using logon email, but no success, I can't login yet.
Reni Dantas
  • 117
  • 10
0
votes
1 answer

Localizing the API response in Custom Police Azure ADB2C

I have implemented localization in Azure ADB2C custom policy. Please enter your email string Enter your email address to signin
Baloon1985
  • 89
  • 2
  • 9
0
votes
1 answer

im trying to read/write user in azure b2c using web api , but Im getting Insufficient permissions

Im using https://github.com/AzureADQuickStarts/B2C-GraphAPI-DotNet for creating and reading users using the graph apis . I have already added the required permissions (and even a few extra ones ) for the app in b2c . when i try to either read or…
0
votes
0 answers

After SignInSignup login Azure B2C is routing to reset password flow only a couple of users

First time here. I have a website that uses azure b2c for authentication. The thing is sometimes after successful login (or so I think), users are redirected to password reset flow instead of the website. This is not the intended behavior and these…
0
votes
0 answers

Find existing user by email in Azure Active Directory B2C Custom Policy

I'm creating a custom policy in Azure AD B2C to let invited users sign in via another Azure AD (or even ADFS). The problem I have is that a new user gets created when they sign in (rather than the invited user). I have found that I have been trying…
Narayana
  • 2,654
  • 3
  • 32
  • 32
0
votes
1 answer

Terms of Service pops up on Sign-In although already agreed

I am using the Single-Page Application built on MSAL.js with Azure AD B2C together with the A B2C IEF Custom Policy - Sign Up and Sign In with 'Terms of Use' prompt and a custom RestAPI profile to enrich the output claims. Everything seems fine…
0
votes
1 answer

How to hide authorization code verification step in AD B2C custom policy?

Is it possible to create a custom policy to reset passwords at the member activation step without entering the activation code? I am creating a user using Graph API and sending an invitation email to the specified email address with…
Muthukumar
  • 21
  • 4
-1
votes
1 answer

Integrate Twilio Verify app with Azure Active Directory B2C

Step 1: We successfully uploaded the files and made all the necessary adjustments to the basic policies ( SignUpOrSignin.xml and TrustFrameworkExtensions.xml) Step 2: We successfully uploaded the StepUpPSD2 files after making all the necessary…
-1
votes
2 answers

How to fix error : AADB2C90304: Claims exchange with id 'LocalAccountSigninEmailExchange' could not be found in orchestration step '2'

I am creating users using Microsoft Graph API as follows. var userToAddToAAD = new User { AccountEnabled = true, DisplayName = $"{firstName} {lastName}", MailNickname = $"{firstName}{lastName[0]}", PasswordProfile = new…
-1
votes
1 answer

I want b2c custom policy to create a password before email is validated.?

I have a b2c custom policy that works correctly. We want customers to be able to create a password before their email is validated. Can someone show how such a custom policiy can be created? It works when the customer creates a password after email…
-1
votes
1 answer

Password value does not pass-through Azure AD B2C to Azure Function via REST API during Sign-In

Anyone pls advise? I would like to get Input Password value from Azure Function to Azure AD B2C during Sign In. I tried according to some sample; I received email value, but password value not returned to Azure Function. enter image description here