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

Multi-Tenant User Management Support in Azure B2C

We are using B2C for a number of Apps. Each app is owned by a separate team and currently each team has its own nonprod and prod B2C tenants. The number of apps will definitely grow. We want to use fewer tenants going forward. To be precise, we want…
Bandz
  • 253
  • 4
  • 15
0
votes
1 answer

Azure AD B2C: How to differentiate the serviceUrl of a called REST API based on a value from the consuming app

I am investigating the possibilities of Azure AD B2C. I have the following use case: I have a Xamarin Forms app. In the current app, a user can choose three different environments (A, B, C) when logging in. Each environment has a separate - but…
Ed S
  • 120
  • 1
  • 6
0
votes
1 answer

DisplayControl - Verify email not used - Azure AD B2C

I got a request to verify that an email has not been used before sending the verification code in our Sign Up custom policy. In our Password reset policy we use DisplayControl to check if the password exist before sending the OTP code and only send…
0
votes
1 answer

Azure AD B2C string format claim

I want to send sms with one time password but the requirement is that in must be in sentence: "This is your one time code 123456, please confirm your account". code generation:
Wall34
  • 11
  • 3
0
votes
2 answers

Can I get a list of B2C Tenant Users (Created using signin-signup policy) Using Graph Explorer?

I'd like to use Microsoft Graph Explorer to work with my Azure AD B2C Tenant. Initially, all I want to do is retrieve a Custom Attribute that I've assigned to an application registration. The custom attribute will store the UserAppPermission value,…
0
votes
1 answer

azure b2c redirect uri override after registration

We are using a azure b2c signup custom policy. While user clicks on a register button from www.domain.com/register SPA to get to azure b2c register page , after successfull registeration we want user to be redirected to a page which is…
0
votes
0 answers

Azure B2C custom attribute fixed length

Does anyone know how to add a fixed length validation for a custom attribute to Azure B2C signup/sign in the template? I'm trying to figure how to restrict user to enter just 10 digits. For example, user attribute (Telephone Number) = Restrict to…
0
votes
2 answers

Azure B2C password reset email

We have been using Azure B2C for a little while now. The company recently went under a branding change (company name changed). We updated the Azure AD to reflect this change. But we are also using Azure B2C for authentication, we have fully…
TheWebGuy
  • 11,429
  • 16
  • 52
  • 72
0
votes
1 answer

B2C Custom Policy - How to show the signup links from a Selfasserted DataUri signin page

I am using the DataUri: urn:com:microsoft:aad:b2c:elements:contract:unifiedssp:2.1.0 for my signin page. This displays the signup links from the ClaimsProviderSelection. The issue is that I want to add additional Display claims to the signin and the…
0
votes
1 answer

Azure B2C Seamless account migration base policies

Just getting started with a migration of an existing legacy (local database) IDP to Azure B2C. I want to use something similar to the seamless user migration (…
0
votes
1 answer

AD B2C Custom Policy Redirection

I have an AD B2C custom policy, that basically is a Reset Password and redirection to a React App, based on this reference: https://medium.com/the-new-control-plane/invoking-the-azure-ad-b2c-custom-policy-journey-with-a-jwt-e9e3ff0560a3 When you…
0
votes
1 answer

Azure B2C Custom policyAn exception occuring while implementing the combinedsignup&signin & invitationURL based signup&signin

I am trying to create a setup where a user can signup & sign in directly from the combined signup&Signin page Signup&signin from the invitation link. Point one is working perfectly fine using the following files BaseFile ExtensionFile RPFile For…
0
votes
0 answers

Azure B2C - Custom policy not working when user change password

I am using b2c custom policy, when user logged in -> reset password-> enter signin name and email address -> receives verification code -> validate code -> click on continue it throws my custom error which I setup under…
Vikas
  • 25
  • 4
0
votes
1 answer

calling microsoft graph beta api via postman and codebase using java

I am already aware to call microsft graph API using postman and code base for v1.0 . Question : How to call microsoft graph beta api via postman and codebase using java for beta version. There are lots of articles related to v1.0 but i do not find…
0
votes
1 answer

Multiple Custom Headers and Path Variables in Azure B2C Custom Policy

Im calling a REST api from an azure B2C custom policy, what this flow will do is call out to one endpoint with a GET and if I dont get back the claim information I need, it will call out to another end point with a POST. There are two limitations…