Skip to content

Commit ae71896

Browse files
more entries in the TOC
1 parent e133730 commit ae71896

File tree

3 files changed

+57
-16
lines changed

3 files changed

+57
-16
lines changed

msal-javascript-conceptual/TOC.yml

Lines changed: 56 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,73 @@
1-
- name: Microsoft Authentication Libraries for JavaScript
1+
- name: Library overview
22
href: overview.md
33
items:
44
- name: MSAL Browser
55
items:
6-
- name: Initialize applications
7-
href: browser/initialization.md
6+
- name: Getting started
7+
items:
8+
- name: Initialize applications
9+
href: browser/initialization.md
10+
- name: Configure your application
11+
href: browser/configuration.md
12+
- name: Acquire tokens
13+
items:
14+
- name: Sign in users
15+
href: browser/login-user.md
16+
- name: Acquire tokens
17+
href: browser/acquire-token.md
18+
- name: Manage token lifetimes
19+
href: browser/token-lifetimes.md
20+
- name: Sign out users
21+
href: browser/logout.md
22+
- name: Advanced topics
23+
items:
24+
- name: Logging in MSAL.js
25+
href: browser/logging.md
26+
- name: Handle errors and exceptions
27+
href: browser/errors.md
28+
- name: Acquiring SSH certificates
29+
href: browser/ssh-certificates.md
30+
- name: Use MSAL from Microsoft-hosted CDN
31+
href: browser/cdn-usage.md
32+
- name: Migration guides
33+
items:
34+
- name: Migrate apps from ADAL.js to MSAL.js
35+
href: browser/migrate-adal-js-to-msal-js.md
36+
- name: Migrate SPA from implicit to auth code flow
37+
href: browser/logout.md
38+
- name: Migrate from MSAL 1.x to MSAL 2.x
39+
href: browser/v1-migration.md
40+
- name: Migrate from MSAL 3.x to MSAL 3.x
41+
href: browser/v2-migration.md
842
- name: MSAL Angular
943
items:
1044
- name: Initialize MSAL
1145
href: angular/initialization.md
46+
- name: Configure your application
47+
href: angular/configuration.md
1248
- name: MSAL Node
1349
items:
1450
- name: Initialize public client applications
1551
href: node/initialize-public-client-application.md
1652
- name: Initialize confidential client applications
1753
href: node/initialize-confidential-client-application.md
54+
- name: Configure your application
55+
href: node/configuration.md
56+
- name: Supported authorization code grants
57+
href: node/request.md
1858
- name: MSAL React
1959
items:
2060
- name: Getting started with MSAL React
21-
href: react/getting-started.md
61+
href: react/getting-started.md
62+
- name: Class components
63+
href: react/class-components.md
64+
- name: Events
65+
href: react/events.md
66+
- name: Hooks
67+
href: react/hooks.md
68+
- name: Performance
69+
href: react/performance.md
70+
- name: Errors
71+
href: react/errors.md
72+
- name: Migrate from MSAL v1 to MSAL React and MSAL Browser
73+
href: react/migration-guide.md

msal-javascript-conceptual/browser/acquire-token.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Acquiring and Using an Access Token
1+
# Acquiring and using an access token
22

33
> :information_source: Before you start here, make sure you understand how to [initialize the application object](./initialization.md). It is also crucial to understand the relationship between [access tokens and resources](./resources-and-scopes.md).
44

msal-javascript-conceptual/browser/initialization.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,6 @@
22

33
Before you get started, please ensure you have completed all the [prerequisites](../README.md#prerequisites).
44

5-
In this document:
6-
- [Initialization of MSAL](#initialization-of-msal)
7-
- [Initializing the PublicClientApplication object](#initializing-the-publicclientapplication-object)
8-
- [(Optional) Configure Authority](#optional-configure-authority)
9-
- [(Optional) Configure Redirect URI](#optional-configure-redirect-uri)
10-
- [(Optional) Additional Configuration](#optional-additional-configuration)
11-
- [Choosing an Interaction Type](#choosing-an-interaction-type)
12-
- [Popup APIs](#popup-apis)
13-
- [Redirect APIs](#redirect-apis)
14-
- [Next Steps](#next-steps)
15-
165
## Initializing the PublicClientApplication object
176

187
In order to use MSAL.js, you need to instantiate a `PublicClientApplication` object. You must provide the `client id` (`appId`) of your application.

0 commit comments

Comments
 (0)