Skip to content

Commit efaec68

Browse files
committed
link fix + more copy edit
1 parent c075ee6 commit efaec68

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/active-directory/develop/msal-net-aad-b2c-considerations.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ ms.custom: aaddev
2323

2424
You can use MSAL.NET to sign in users with social identities by using [Azure Active Directory B2C (Azure AD B2C)](https://aka.ms/aadb2c). Azure AD B2C is built around the notion of policies. In MSAL.NET, specifying a policy translates to providing an authority.
2525

26-
- When you instantiate the public client application, you need to specify the policy in authority.
27-
- When you want to apply a policy, you need to call an override of `AcquireTokenInteractive` containing an `authority` parameter.
26+
- When you instantiate the public client application, you need to specify the policy as part of the authority.
27+
- When you want to apply a policy, call an override of `AcquireTokenInteractive` that supplies the `authority` parameter.
2828

29-
This article is for MSAL 3.x. If you are interested in MSAL 2.x, see [Azure AD B2C specifics in MSAL 2.x](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/AAD-B2C-Specifics-MSAL-2.x).
29+
This article applies to MSAL.NET 3.x. For MSAL.NET 2.x, see [Azure AD B2C specifics in MSAL 2.x](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/AAD-B2C-Specifics-MSAL-2.x) in the MSAL.NET Wiki on GitHub.
3030

3131
## Authority for an Azure AD B2C tenant and policy
3232

33-
The authority to use is `https://{azureADB2CHostname}/tfp/{tenant}/{policyName}` where:
33+
The authority format for Azure AD B2C is: `https://{azureADB2CHostname}/tfp/{tenant}/{policyName}`
3434

35-
- `azureADB2CHostname` is the name of the Azure AD B2C tenant plus the host (for example `{your-tenant-name}.b2clogin.com`),
36-
- `tenant` is the full name of the Azure AD B2C tenant (for example, `{your-tenant-name}.onmicrosoft.com`) or the GUID for the tenant,
37-
- `policyName` the name of the policy or user flow to apply (for instance "b2c_1_susi" for sign-up/sign-in).
35+
- `azureADB2CHostname` - The name of the Azure AD B2C tenant plus the host. For example `{your-tenant-name}.b2clogin.com`.
36+
- `tenant` - The domain name or the directory (tenant) ID of the Azure AD B2C tenant. For example, `{your-tenant-name}.onmicrosoft.com` or a GUID, respectively.
37+
- `policyName` - The name of the user flow or custom policy to apply. For example, a sign-up/sign-in policy like *b2c_1_susi*.
3838

39-
For more information about Azure AD B2C authorities, see [Set redirect URLs to b2clogin.com](../../active-directory-b2c/b2clogin.com).
39+
For more information about Azure AD B2C authorities, see [Set redirect URLs to b2clogin.com](../../active-directory-b2c/b2clogin.md).
4040

4141
## Instantiating the application
4242

0 commit comments

Comments
 (0)