Synonym of azure-ad-b2c tag https://stackoverflow.com/tags/azure-ad-b2c/
Questions tagged [aad-b2c]
174 questions
0
votes
1 answer
How to remove an Azure AD B2C application's api permission by MSAL JAVA?
I can grant an api permission by:
OAuth2PermissionGrant ret = graphClient.oauth2PermissionGrants()
.buildRequest()
.post(oAuth2PermissionGrant);
AppRoleAssignment ret =…

CYLong
- 5
- 2
0
votes
1 answer
Azure B2C Custom Policy Precondition not working
I have a simple Precondition during ValidationTechnicalProfile, that compares claim with a string, I want to Skip that validation step if value matches but it doesn't executes even though the Value is correct:

Ray
- 7
- 2
0
votes
1 answer
Azure ADB2C Signup Page Customization
Working with B2C service for user creation and authentication with custom policy method. On the b2c Signup page, there is a usecase to add a drop-down list to populate a dynamic list of countries to the user. Are there any helpful references for…

Dev3
- 1
- 2
0
votes
1 answer
Replace Azure B2C verification code by link in email during password reset
I have a password reset flow. I'm sending custom email templates using sendgrid. Now I want to change the verification code with a "verification link".
I found a sample for signup invitation that is similar but not really a sample for password…

LockTar
- 5,364
- 3
- 46
- 72
0
votes
1 answer
Remove text from B2C custom policy sign up flow
In the sign up page, when the existing user tries to sign up, it gives an error, this user already exists. But it shows the text, ''confirmed email address'' , how can we remove the text?

Amita
- 47
- 2
0
votes
1 answer
ValidationTechnicalProfile is not executed - B2C Custom Policy
I am attempting to call a RESTful technical profile by using ValidationTechnicalProfile. I have checked application insights and I can see the OutputClaimsTransformations happening, but it skips over the ValidationTechnicalProfile and continues on…

inhk
- 3
- 1
0
votes
1 answer
Azure AD B2C questions on sign-up and suitability
We plan to use Azure AD for our workforce users. We also have few applications for our customers. The sales team usually reaches out to a specific team who creates customer accounts to our current environment.
Few questions:
a. Is Azure AD B2C right…

himu
- 1
0
votes
1 answer
adb2c remember username and password
We have custom policies with KMSi support. We have a requirement to store username/password to on client's browser so that once KMSI is expired, user dont have enter username/pass.
Is there a way to support this?
Thanks

Ray
- 7
- 2
0
votes
1 answer
Azure B2C token scope permission issue
When I try to get a token with a scope inside it then I get a This application does not have sufficient permissions against this web resource to perform the operation error.
Failing…

e11en
- 107
- 1
- 2
- 17
0
votes
3 answers
Azure B2C - Adding a Language Selector to Html Template - How to pass chosen language to application
We are using Azure B2C custom policies. We implemented a language selector on the sign in screen by adding it to the our custom html template. This works fine in B2C but once the user is logged in, we want the selected language to be passed to our…

ATrivino
- 25
- 3
0
votes
1 answer
What does a PasswordChange with TOTP for Azure B2C look like?
I have an existing Azure B2C solution using custom policies and provides sign up / sign in via AAD, MS Account, Google and Local. I'm now adding TOTP MFA as provided by…

Reuben
- 4,136
- 2
- 48
- 57
0
votes
1 answer
What is the recommended way of linking new local account to existing social account
What would be recommended way to support linking local account to existing social account?
Scenario:
User has previously signed up with social account (Google/Facebook etc.) - bob@contoso.com
User signs up with local account with bob@contoso.com…

kamilz
- 168
- 1
- 12
0
votes
1 answer
Localization of TOTP MFA controls
I've implemented TOTP based MFA as described in the documentation (https://learn.microsoft.com/en-us/azure/active-directory-b2c/display-control-time-based-one-time-password) and samples…

kamilz
- 168
- 1
- 12
0
votes
1 answer
ADB2C - Issue with 'SignIn only' user flow with MSAL library
In my ADB2C application, I want to give only sign-In provision to user without sign-up option.
I am using ADB2C 'SignIn' user flow in .Net core application. I have included Microsoft identity in application. So, signin is taken care by this library…

Jaydeep Suryawanshi
- 415
- 4
- 11
0
votes
1 answer
ADB2C - How to change UI for password confirmation screen(In reset password flow)
I have created sign-in user flow with reset password user flow.
I have updated UI with custom UI in both the flows. When user click on 'Forgot password' link then user is seeing new UI for 'Reset password' user flow, but after email verification…

Jaydeep Suryawanshi
- 415
- 4
- 11