Skip to content

Commit d3e50b1

Browse files
committed
make changes per tech. content reiew team
1 parent 73178c8 commit d3e50b1

6 files changed

+14
-14
lines changed

.openpublishing.redirection.active-directory.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10657,12 +10657,12 @@
1065710657
},
1065810658
{
1065910659
"source_path_from_root": "/articles/active-directory-b2c/tutorial-acquire-access-token.md",
10660-
"redirect_url": "/azure/active-directory-b2c/enable-authentication-in-node-web-api",
10660+
"redirect_url": "/azure/active-directory-b2c/enable-authentication-in-node-web-app-with-api",
1066110661
"redirect_document_id": false
1066210662
},
1066310663
{
1066410664
"source_path_from_root": "/articles/active-directory-b2c/tutorial-call-api-with-access-token.md",
10665-
"redirect_url": "/azure/active-directory-b2c/enable-authentication-in-node-web-api",
10665+
"redirect_url": "/azure/active-directory-b2c/enable-authentication-in-node-web-app-with-api",
1066610666
"redirect_document_id": false
1066710667
},
1066810668
{

articles/active-directory-b2c/configure-a-sample-node-web-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Configure authentication in a sample Node.js web application by using Azure AD B2C
2+
title: Configure authentication in a sample Node.js web application by using Azure Active Directory B2C (Azure AD B2C)
33
description: This article discusses how to use Azure Active Directory B2C to sign in and sign up users in a Node.js web application.
44
titleSuffix: Azure AD B2C
55
services: active-directory-b2c
@@ -63,7 +63,7 @@ To register the web app, follow these steps:
6363
1. Select **Overview**.
6464
1. Record the **Application (client) ID** for later use, when you configure the web application.
6565

66-
![Screenshot of the web app Overview page for recording your web app ID.](./media/configure-authentication-sample-python-web-app/get-azure-ad-b2c-app-id.png)
66+
![Screenshot of the web app Overview page for recording your web app I D.](./media/configure-authentication-sample-python-web-app/get-azure-ad-b2c-app-id.png)
6767

6868
### Step 2.2: Create a web app client secret
6969

articles/active-directory-b2c/configure-authentication-in-sample-node-web-app-with-api.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Configure authentication in a sample Node.js web API by using Azure AD B2C
2+
title: Configure authentication in a sample Node.js web API by using Azure Active Directory B2C
33
description: Follow the steps in this article to learn how to configure authentication in a sample Node.js web API by using Azure AD B2C
44
titleSuffix: Azure AD B2C
55
services: active-directory-b2c
@@ -54,7 +54,7 @@ To enable your app to sign in with Azure AD B2C and call a web API, you must reg
5454

5555
The application registrations and the application architecture are described in the following diagram:
5656

57-
![Diagram of the application registrations and the application architecture for an app with web API.](./media/enable-authentication-web-api/app-with-api-architecture.png)
57+
![Diagram of the application registrations and the application architecture for an app with web A P I.](./media/enable-authentication-web-api/app-with-api-architecture.png)
5858

5959
## Prerequisites
6060

@@ -239,7 +239,7 @@ You're now ready to test the web application's scoped access to the web API. Run
239239
```
240240
1. In your browser, go to `http://localhost:3000`. You should see the page with two buttons, **Sign in to call PROTECTED API** and **Or call the ANONYMOUS API**.
241241
242-
:::image type="content" source="./media/tutorial-call-api-using-access-token/sign-in-call-api.png" alt-text="Web page for sign in to call protected api.":::
242+
:::image type="content" source="./media/tutorial-call-api-using-access-token/sign-in-call-api.png" alt-text="Web page for sign in to call protected A P I.":::
243243
244244
1. To call the anonymous API, select the **Or call the ANONYMOUS API**. The API responds with JSON object with `date` key such as:
245245
@@ -253,7 +253,7 @@ You're now ready to test the web application's scoped access to the web API. Run
253253
1. Enter your sign-in credentials, such as email address and password. If you don't have an account, select **Sign up now** to create an account. If you have an account but have forgotten your password, select **Forgot your password?** to recover your password. After you successfully sign in or sign up, you should see the following page with **Call the PROTECTED API** button.
254254

255255

256-
:::image type="content" source="./media/tutorial-call-api-using-access-token/signed-in-to-call-api.png" alt-text="Web page for signed to call protected api.":::
256+
:::image type="content" source="./media/tutorial-call-api-using-access-token/signed-in-to-call-api.png" alt-text="Web page for signed to call protected A P I.":::
257257

258258
1. To call the protected API, select the **Call the PROTECTED API** button. The API responds with JSON object with a `name` key whose value is your account's surname such as:
259259

articles/active-directory-b2c/enable-authentication-in-node-web-app-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.subservice: B2C
1313
ms.custom: "b2c-support"
1414
---
1515

16-
# Enable authentication options in a Node.js web app by using Azure AD B2C
16+
# Enable authentication options in a Node.js web app by using Azure Active Directory B2C
1717

1818
This article describes how to enable, customize, and enhance the Azure Active Directory B2C (Azure AD B2C) authentication experience for your Node.js web application.
1919

articles/active-directory-b2c/enable-authentication-in-node-web-app-with-api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Enable authentication in your own Node.js web API by using Azure AD B2C
2+
title: Enable authentication in your own Node.js web API by using Azure Active Directory B2C
33
description: Follow this article to learn how to call your own web API protected by Azure AD B2C from your own node js web app. The web app acquires an access token and uses it to call a protected endpoint in the web API. The web app adds the access token as a bearer in the Authorization header, and the web API needs to validate it.
44
titleSuffix: Azure AD B2C
55
services: active-directory-b2c
@@ -14,9 +14,9 @@ ms.author: kengaderdus
1414
ms.subservice: B2C
1515
---
1616

17-
# Enable authentication in your own Node.js web API by using Azure AD B2C
17+
# Enable authentication in your own Node.js web API by using Azure Active Directory B2C
1818

19-
In this article, you learn how to create your web app that calls your web API that's protected by Azure Active Directory B2C (Azure AD B2C). To authorize access to a the web API, serve only requests that include a valid Azure AD B2C-issued access token.
19+
In this article, you learn how to create your web app that calls your web API. The web API needs to be protected by Azure Active Directory B2C (Azure AD B2C). To authorize access to a the web API, you serve requests that include a valid access token that's issued by Azure AD B2C.
2020

2121
## Prerequisites
2222

articles/active-directory-b2c/enable-authentication-in-node-web-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Enable authentication in your own Node web application using Azure AD B2C
2+
title: Enable authentication in your own Node web application using Azure Active Directory B2C
33
description: This article explains how to enable authentication in your own node.js web application using Azure AD B2C
44
titleSuffix: Azure AD B2C
55
services: active-directory-b2c
@@ -13,7 +13,7 @@ ms.author: kengaderdus
1313
ms.subservice: B2C
1414
---
1515

16-
# Enable authentication in your own Node web application using Azure AD B2C
16+
# Enable authentication in your own Node web application using Azure Active Directory B2C
1717

1818
In this article, you'll learn how to add Azure Active Directory B2C (Azure AD B2C) authentication in your own Node.js web application. You'll enable users to sign in, sign out, update profile and reset password using Azure AD B2C user flows. This article uses [Microsoft Authentication Library (MSAL) for Node](https://github.com/AzureAD/microsoft-authentication-library-for-js/tree/dev/lib/msal-node) to simplify adding authentication to your node web application.
1919

0 commit comments

Comments
 (0)