Skip to content

Commit 01a996f

Browse files
committed
build fixes MicrosoftDocs#2
1 parent cdd91d1 commit 01a996f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

msal-javascript-conceptual/angular/MIP-avoid-page-reloads.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,4 +139,4 @@ export class MsalComponent {
139139
```
140140

141141
## Next steps
142-
Learn more about [building a single-page application (SPA)](scenario-spa-overview.md) using MSAL.js.
142+
Learn more about [building a single-page application (SPA)](/entra/identity-platform/scenario-spa-overview) using MSAL.js.

msal-javascript-conceptual/browser/MIP-migrate-spa-implicit-to-auth-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ When you uncheck the implicit grant settings in the app registration, the implic
8989

9090
To learn more about the authorization code flow, including the differences between the implicit and auth code flows, see the [Microsoft identity platform and OAuth 2.0 authorization code flow](/entra/identity-pltform/v2-oauth2-auth-code-flow).
9191

92-
If you'd like to dive deeper into JavaScript single-page application development on the Microsoft identity platform, the multi-part [Scenario: Single-page application](scenario-spa-overview.md) series of articles can help you get started.
92+
If you'd like to dive deeper into JavaScript single-page application development on the Microsoft identity platform, the multi-part [Scenario: Single-page application](/entra/identity-platform/scenario-spa-overview) series of articles can help you get started.
9393

9494
<!-- LINKS - external -->
9595
[msal-js-publicclientapplication]: https://azuread.github.io/microsoft-authentication-library-for-js/ref/classes/_azure_msal_node.PublicClientApplication.html

msal-javascript-conceptual/browser/working-with-b2c.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Follow the tutorial on how to:
4040

4141
<!--End identity platform doc-->
4242

43-
> :warning: Before you start here, make sure you understand [how to initialize an app object](https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/dev/lib/msal-browser/docs/initialization.md) and [working with resources and scopes](https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/dev/lib/msal-browser/docs/resources-and-scopes.md). We also recommend general familiarity with **Azure AD B2C**. See the [B2C documentation](https://docs.microsoft.com/azure/active-directory-b2c/technical-overview) for more.
43+
> :warning: Before you start here, make sure you understand [how to initialize an app object](https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/dev/lib/msal-browser/docs/initialization.md) and [working with resources and scopes](https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/dev/lib/msal-browser/docs/resources-and-scopes.md). We also recommend general familiarity with **Azure AD B2C**. See the [B2C documentation](/azure/active-directory-b2c/technical-overview) for more.
4444
4545
**MSAL.js supports** authentication with **social** (Microsoft, Google, Facebook etc.), **enterprise** (ADFS, Salesforce etc.) and **local** (stored in the Azure AD B2C directory) identities using **Azure AD B2C** (*B2C* for short). When developing B2C apps with **MSAL.js**, there are a few important details to keep in mind.
4646

@@ -123,7 +123,7 @@ The `login.microsoftonline.com` endpoints can still be used for any behind the s
123123

124124
- To obtain **application permissions**, you'll need perform application authentication (using the **client credentials grant**).
125125
- To obtain **delegated permissions**, you'll need to perform user authentication with an admin account.
126-
- Management apps are typically registered as audience **type 1** or **type 2** (see [below](#b2c-and-account/audience-types)).
126+
- Management apps are typically registered as audience **type 1** or **type 2** (see [below](#b2c-and-accountaudience-types)).
127127

128128
## Other Topics
129129

@@ -179,4 +179,4 @@ MSAL.js will only process tokens which it originally requested. If your flow req
179179

180180
### B2C and iframe usage
181181

182-
**Azure AD B2C** offers an [embedded sign-in experience](/azure/active-directory-b2c/embedded-login), which allows rendering a custom login UI in an iframe. Since MSAL prevents redirect in iframes by default, you'll need to set the [allowRedirectInIframe](/entra/identity-platform/configuration.md#system-config-options) configuration option to **true** in order to make use of this feature. For other considerations when using iframes, please refer to: [Using MSAL in iframed apps](/entra/identity-platform/iframe-usage.md)
182+
**Azure AD B2C** offers an [embedded sign-in experience](/azure/active-directory-b2c/embedded-login), which allows rendering a custom login UI in an iframe. Since MSAL prevents redirect in iframes by default, you'll need to set the [allowRedirectInIframe](/entra/identity-platform/configuration.md#system-config-options) configuration option to **true** in order to make use of this feature. For other considerations when using iframes, please refer to: [Using MSAL in iframed apps](/entra/identity-platform/iframe-usage)

0 commit comments

Comments
 (0)