You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When setting up signin for your application using Azure Active Directory B2C (Azure AD B2C), you can prepopulate the signin name or directly sign in to a specific social identity provider, such as Facebook, LinkedIn, or a Microsoft account.
22
+
When you set up sign-in for your application using Azure Active Directory B2C (Azure AD B2C), you can prepopulate the sign-in name or directly sign in to a specific social identity provider, such as Facebook, LinkedIn, or a Microsoft account.
23
23
24
-
## Prepopulate the sign-in name
24
+
## Prepopulate the signin name
25
25
26
-
During a signin user journey, a relying party application may target a specific user or domain name. When targeting a user, an application can specify, in the authorization request, the `login_hint` query parameter with the user signin name. Azure AD B2C automatically populates the signin name, while the user only needs to provide the password.
26
+
During a sign-in user journey, a relying party application may target a specific user or domain name. When targeting a user, an application can specify, in the authorization request, the `login_hint` query parameter with the user sign-in name. Azure AD B2C automatically populates the sign-in name, while the user only needs to provide the password.
27
27
28
28

29
29
30
-
The user is able to change the value in the signin textbox.
30
+
The user is able to change the value in the sign-in textbox.
31
31
32
32
::: zone pivot="b2c-custom-policy"
33
33
34
-
To support login hint parameter, override the `SelfAsserted-LocalAccountSignin-Email` technical profile. In the `<InputClaims>` section, set the DefaultValue of the signInName claim to `{OIDC:LoginHint}`. The `{OIDC:LoginHint}` variable contains the value of the `login_hint` parameter. Azure AD B2C reads the value of the signInName claim and pre-populates the signInName textbox.
34
+
To support sign in hint parameter, override the `SelfAsserted-LocalAccountSignin-Email` technical profile. In the `<InputClaims>` section, set the DefaultValue of the signInName claim to `{OIDC:LoginHint}`. The `{OIDC:LoginHint}` variable contains the value of the `login_hint` parameter. Azure AD B2C reads the value of the signInName claim and pre-populates the signInName textbox.
35
35
36
36
```xml
37
37
<ClaimsProvider>
@@ -51,7 +51,7 @@ To support login hint parameter, override the `SelfAsserted-LocalAccountSignin-E
51
51
52
52
## Redirect sign in to a social provider
53
53
54
-
If you configured the signin journey for your application to include social accounts, such as Facebook, LinkedIn, or Google, you can specify the `domain_hint` parameter. This query parameter provides a hint to Azure AD B2C about the social identity provider that should be used for signin. For example, if the application specifies `domain_hint=facebook.com`, sign in goes directly to the Facebook sign in page.
54
+
If you configured the sign-in journey for your application to include social accounts, such as Facebook, LinkedIn, or Google, you can specify the `domain_hint` parameter. This query parameter provides a hint to Azure AD B2C about the social identity provider that should be used for sign-in. For example, if the application specifies `domain_hint=facebook.com`, sign in goes directly to the Facebook sign in page.
55
55
56
56

0 commit comments