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

Azure B2C: How to show a static HTML page only?

I am modifying an existing custom policy's behavior and have not yet been able to find guidance on what I a trying to do. Backgound I have a custom signup/signin policy with a terms & conditions page. The general workflow is: Sign up / Sign…
SeanKilleen
  • 8,809
  • 17
  • 80
  • 133
0
votes
1 answer

azure ad b2c mfa passwordless authentication technical profile merge screens

I am writing custom profile for azure AD b2c and using this starter kit. I need to make some changes as when I run SignUpOrSignInWithPhone user journey it opens first input screen. Here you can see we can provide valid number and click…
0
votes
1 answer

Azure B2C: Custom claim isn't written into AAD via custom policy

It seems that I've hit a road block when it comes to writing custom claims to Azure Active Directory (AAD). I'm trying to write the organization into ADD, but it appears that when I query the users via Graph API, I don't see any trace of the…
0
votes
2 answers

Azure B2C: Querying AAD using a custom claim?

Note that this ties with a previous question, but I've gain a bit of a better understanding of Azure Active Directory (AAD) with custom policies. Is it possible to query AAD by using a custom claim? For example, I want to use a claim called…
0
votes
1 answer

Azure B2C: Checking if another claim exists during local account creation

In addition to the usual creation of an account based on whether the e-mail used doesn't currently exist, I would like to know how I can also check if another claim value doesn't exist in Azure Active Directory. For example, for our application,…
0
votes
0 answers

SSO with federated sign in in B2C custom policy requires user to choose the social Identity provider

I have a custom policy set up that has local and Azure AD based social authentication. When used across multiple apps in SSO config, local authentication works perfectly ( i.e. I am not asked to enter credentials and am logged in second app as soon…
0
votes
1 answer

AuthnRequest signing

I'll try to make custom policy for Azure B2C to work with SAML 2.0 identity provider which require all requests to be signed. PartnerEntity parameter includes correct url which metadata defines IDPSSODescriptor element and…
Jupek
  • 11
  • 2
0
votes
1 answer

how to check if user exists in AD before migration

I'm using the guide here to perform Just-In-Time migration of a user from a legacy Idp to azure ad b2c: https://github.com/azure-ad-b2c/user-migration/tree/master/jit-migration-v2. I have this working properly on its own with a service I am using to…
Riz
  • 6,486
  • 19
  • 66
  • 106
0
votes
1 answer

Azure AD B2C: Can I intercept the login flow and either approve/deny the token?

I'm struggling to figure out a way to hook into the authentication/authorization/token issuance process. I want to be able to authenticate users, as well as prevent users that are banned from logging in. I want things to work this way: Upon…
Attilah
  • 17,632
  • 38
  • 139
  • 202
0
votes
1 answer

How does one use AzureMfaProtocolProvider for technical profile without a "Submit" button

Using Azure AD MFA technical profile with this document as a guide Azure AD MFA technical profiles in custom policies - Azure AD B2C | Microsoft Docs, the self-asserted technical profile works just fine. But instead of using a “submit” button to…
Nana
  • 3
  • 2
0
votes
1 answer

Azure B2C SAML Policy Access URL For Password Reset

I am configuring Azure B2C with Tableau using SAML protocol. How do I expose the password reset user journey? I can't do it from the portal and the policy URL doesn't load in the browser either.
0
votes
0 answers

Setup Azure b2c SSO with AWS

We want to implement b2c SSO using custom policies on following scenario: User logs into web app using b2c signin-singup policy (works fine). After signin, web page displays links to call another web apps and when signed in user clicks on link,…
Vikas
  • 25
  • 4
0
votes
1 answer

B2C - Impersonate Custom Policy

About the sample "https://github.com/azure-ad-b2c/samples/tree/master/policies/impersonation". Someone who has already used it, can you comment on how you handled the authentication logs? I noticed in the B2C Logs both the user who is "Impersonated"…
0
votes
1 answer

how to incorporate TOTP with user migration in AD B2C

I'm using the guide here to perform Just-In-Time migration of a user from a legacy Idp to azure ad b2c: https://github.com/azure-ad-b2c/user-migration/tree/master/jit-migration-v2. I have this working properly on its own with a service I am using to…
Riz
  • 6,486
  • 19
  • 66
  • 106
0
votes
1 answer

Azure B2C: Getting List of Built-in Claims for Custom Policies

While the Azure Starter Pack for B2C is helpful for getting started with creating custom policies, is there an actual list of built-in claims that one can reference? There are several claims that are referred in several of the files, though I have…