Questions tagged [azure-b2c]

Synonym of azure-ad-b2c tag https://stackoverflow.com/tags/azure-ad-b2c/

304 questions
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:
0
votes
1 answer

How to learn Microsoft Azure particularly Azure AD B2C

My recent work involved Azure B2C and I am really fascinated and confused at the same time. AFAIK, to perform any kind of work in Azure B2C, you need Azure subscription and create resources. My question is, How can I explore/lab Azure B2C Policies…
Hakoo Desai
  • 341
  • 3
  • 4
  • 21
0
votes
1 answer

Azure B2C login with Cypress using cy.request()

Our app requires Azure b2c authentication when login in. I automated the login by simply typing the username and password. In addition I had to add "chromeWebSecurity": false to avoid cross-origin issue. I think this is the incorrect way of login…
Kush
  • 33
  • 4
0
votes
1 answer

React Native Azure AD authentication custom Login screen | azure api management

please help me to create a react native login screen with the use of Azure AD : I want to create a register/login screen in react-native (email,password) and want the authentication to be done by Azure AD, (I'm a beginner with Azure AD). I know we…
0
votes
1 answer

Can Azure AD B2C Claims be used for authorization purposes in a .NET Core Web App?

When setting up Azure AD B2C authentication using the Microsoft Identity Platform there is an option to store and return custom claims for a user. The question is specifically about when developing a .NET Core Web Application that uses an App…
Dan Harris
  • 1,336
  • 1
  • 21
  • 44
0
votes
1 answer

cannot build with react-native-msal, Deprecated Gradle features were used in this build

I'm really new to mobile development and I'm trying to implement authentication in a simple react-native app using react-native-msal. I'm using React Native CLI (ie npx react-native run-android) and after initializing a new app and confirming all is…
MoSlo
  • 535
  • 5
  • 11
0
votes
1 answer

Modify the username sign in custom policy to also accept email login

I need users to have unique usernames for my site, so I am using the sample policy here: https://github.com/azure-ad-b2c/samples/tree/master/policies/username-signup-or-signin/policy to do that. However, this sign in does not allow the users to…
0
votes
0 answers

Can't link subscription to Azure B2C

I was trying to get rid of old tenants and cleaning up my subscriptions but it looks like now it is even worse... I have a Default tenant with a Pay-As-You-Go subscription. I have 2 other tenants ("tenant_1" and "tenant_2"), in which I try to have…
Roberto
  • 567
  • 1
  • 3
  • 10
0
votes
1 answer

Azure AD B2C Custom Identity Policy (multitenant + external identity providers)

I’m struggling with configuring Azure AD B2C so it supports: Multitenants and external identity providers at the same. I have a SPA application (in Angular, using MSAL.js) with .NET backend (.NET 4.8). I have configured “Identity providers” and…
klm_
  • 1,199
  • 1
  • 10
  • 26
0
votes
1 answer

Azure B2C force login after password reset sub journey

we're using password reset sub-journey as described here (https://learn.microsoft.com/en-us/azure/active-directory-b2c/add-password-reset-policy?pivots=b2c-custom-policy#self-service-password-reset-recommended). When using this, a user is…
Ray
  • 7
  • 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…
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
0
votes
1 answer

b2c and b2e integration with Azure AD

What is ideal way of integrating both Azure AD b2c and b2e in an angular application, can we give two separate buttons on login page and can redirect based on user selection? Is that feasible? or via social login but that would force b2e tenants…
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…