Skip to content

Commit 0338ea3

Browse files
committed
correct per reviewer
1 parent 7ca18f8 commit 0338ea3

File tree

3 files changed

+21
-25
lines changed

3 files changed

+21
-25
lines changed

articles/active-directory-b2c/TOC.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@
3838
- name: Web app
3939
items:
4040
- name: Sign in and sign out user Nodejs tutorial
41-
href: tutorial-authenticate-nodejs-webapp-msal.md
41+
href: tutorial-authenticate-nodejs-web-app-msal.md
4242
- name: Acquire access token Nodejs tutorial
4343
href: tutorial-acquire-access-token.md
4444
- name: Call a protected API Nodejs tutorial
45-
href: tutorial-call-api-using-access-token.md
45+
href: tutorial-call-api-with-access-token.md
4646
- name: Samples
4747
items:
4848
- name: Integrate Azure AD B2C with your applications

articles/active-directory-b2c/tutorial-acquire-access-token.md

Lines changed: 18 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -68,30 +68,30 @@ Create a folder to host your node application, such as `tutorial-acquire-access
6868
1. In your terminal, change directory into your node app folder, such as `cd tutorial-acquire-access-token`, and run `npm init -y`. This command creates a default package.json file for your Node.js project.
6969
2. In your terminal, run `npm install express`. This command installs the Express framework.
7070
3. Create more folders and files to achieve the following project structure:
71-
72-
```
73-
tutorial-acquire-access-token/
74-
├── index.js
75-
└── package.json
76-
└── .env
77-
└── views/
78-
└── layouts/
79-
└── main.hbs
80-
└── signin.hbs
81-
```
71+
72+
```
73+
tutorial-acquire-access-token/
74+
├── index.js
75+
└── package.json
76+
└── .env
77+
└── views/
78+
└── layouts/
79+
└── main.hbs
80+
└── signin.hbs
81+
```
8282
8383
The `views` folder contains handlebars files for the web app's UI.
8484
8585
## Install the dependencies
8686
8787
In your terminal, install the `dotenv`, `express-handlebars`, `express-session`, and `@azure/msal-node` packages by running the following commands:
8888
89-
```
90-
npm install dotenv
91-
npm install express-handlebars
92-
npm install express-session
93-
npm install @azure/msal-node
94-
```
89+
```
90+
npm install dotenv
91+
npm install express-handlebars
92+
npm install express-session
93+
npm install @azure/msal-node
94+
```
9595
9696
9797
@@ -406,8 +406,4 @@ After you sign in, select **Sign out**. You should see the page with a **Sign in
406406
407407
## Next steps
408408
409-
- Learn how to [Call a web API protected by Azure AD B2C](tutorial-call-api-using-access-token.md).
410-
411-
412-
413-
409+
- Learn how to [Call a web API protected by Azure AD B2C](tutorial-call-api-with-access-token.md).

articles/active-directory-b2c/tutorial-call-api-with-access-token.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Follow the steps in this tutorial to:
4242

4343

4444
## Prerequisites
45-
- Complete the steps in [Tutorial: Sign in and sign out users with Azure AD B2C in a Node.js web app](tutorial-authenticate-nodejs-webapp-msal.md). The tutorial shows you how to configure scopes for a web API, and grant permissions to a web app, such as *webapp1*. It also acquires an access token for calling a web API. The acquired access token is what we'll use to call a protected web API in this tutorial.
45+
- Complete the steps in [Tutorial: Sign in and sign out users with Azure AD B2C in a Node.js web app](tutorial-authenticate-nodejs-web-app-msal.md). The tutorial shows you how to configure scopes for a web API, and grant permissions to a web app, such as *webapp1*. It also acquires an access token for calling a web API. The acquired access token is what we'll use to call a protected web API in this tutorial.
4646

4747
## Create the web API
4848

0 commit comments

Comments
 (0)