Skip to content

Commit d2fa6c2

Browse files
Merge pull request #231879 from kengaderdus/content-freshness-correct-document-type
[Azure AD B2C] Content freshness and correct topic type
2 parents abac315 + 21d4e1a commit d2fa6c2

6 files changed

+13
-13
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: CelesteDG
99
ms.service: active-directory
1010
ms.workload: identity
1111
ms.topic: how-to
12-
ms.date: 07/07/2022
12+
ms.date: 03/24/2023
1313
ms.author: kengaderdus
1414
ms.subservice: B2C
1515
---

articles/active-directory-b2c/enable-authentication-angular-spa-app-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ manager: CelesteDG
77
ms.service: active-directory
88
ms.workload: identity
99
ms.topic: how-to
10-
ms.date: 03/09/2023
10+
ms.date: 03/23/2023
1111
ms.author: kengaderdus
1212
ms.subservice: B2C
1313
ms.custom: "b2c-support"

articles/active-directory-b2c/enable-authentication-angular-spa-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ manager: CelesteDG
77
ms.service: active-directory
88
ms.workload: identity
99
ms.topic: how-to
10-
ms.date: 03/09/2023
10+
ms.date: 03/23/2023
1111
ms.author: kengaderdus
1212
ms.subservice: B2C
1313
ms.custom: "b2c-support"

articles/active-directory-b2c/enable-authentication-ios-app-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: kengaderdus
66
manager: CelesteDG
77
ms.service: active-directory
88
ms.workload: identity
9-
ms.topic: reference
9+
ms.topic: how-to
1010
ms.date: 07/29/2021
1111
ms.author: kengaderdus
1212
ms.subservice: B2C

articles/active-directory-b2c/enable-authentication-ios-app.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ author: kengaderdus
66
manager: CelesteDG
77
ms.service: active-directory
88
ms.workload: identity
9-
ms.topic: reference
10-
ms.date: 07/29/2021
9+
ms.topic: how-to
10+
ms.date: 03/24/2023
1111
ms.author: kengaderdus
1212
ms.subservice: B2C
1313
ms.custom: "b2c-support"
@@ -25,7 +25,7 @@ Review the prerequisites and integration instructions in [Configure authenticati
2525

2626
## Create an iOS Swift app project
2727

28-
If you don't already have an iOS Swift application, set up a new project by doing the following:
28+
If you don't already have an iOS Swift application, set up a new project by doing the following steps:
2929

3030
1. Open [Xcode](https://developer.apple.com/xcode/), and then select **File** > **New** > **Project**.
3131
1. For iOS apps, select **iOS** > **App**, and then select **Next**.
@@ -41,7 +41,7 @@ If you don't already have an iOS Swift application, set up a new project by doin
4141

4242
## Step 1: Install the MSAL library
4343

44-
1. Use [CocoaPods](https://cocoapods.org/) to install the MSAL library. In the same folder as your project's *.xcodeproj* file, if the *podfile* file doesn't exist, create an empty file called *podfile*. Add the following code to the *podfile* file:
44+
1. Use [CocoaPods](https://cocoapods.org/) to install the MSAL library. In the same folder as your project's *.xcodeproj* file, if the *podfile* file doesn't exist, create an empty file and name it *podfile*. Add the following code to the *podfile* file:
4545

4646
```
4747
use_frameworks!
@@ -90,7 +90,7 @@ The [sample code](configure-authentication-sample-ios-app.md#step-4-get-the-ios-
9090
- Contains information about your Azure AD B2C identity provider. The app uses this information to establish a trust relationship with Azure AD B2C.
9191
- Contains the authentication code to authenticate users, acquire tokens, and validate them.
9292

93-
Choose a `UIViewController` where users will authenticate. In your `UIViewController`, merge the code with the [code that's provided in GitHub](https://github.com/Azure-Samples/active-directory-b2c-ios-swift-native-msal/blob/vNext/MSALiOS/ViewController.swift).
93+
Choose a `UIViewController` where users authenticate. In your `UIViewController`, merge the code with the [code that's provided in GitHub](https://github.com/Azure-Samples/active-directory-b2c-ios-swift-native-msal/blob/vNext/MSALiOS/ViewController.swift).
9494

9595
## Step 4: Configure your iOS Swift app
9696

@@ -192,7 +192,7 @@ Authorization: Bearer <access-token>
192192

193193
When users [authenticate interactively](#step-62-start-an-interactive-authorization-request), the app gets an access token in the `acquireToken` closure. For subsequent web API calls, use the acquire token silent (`acquireTokenSilent`) method, as described in this section.
194194

195-
The `acquireTokenSilent` method does the following:
195+
The `acquireTokenSilent` method does the following actions:
196196

197197
1. It attempts to fetch an access token with the requested scopes from the token cache. If the token is present and hasn't expired, the token is returned.
198198
1. If the token isn't present in the token cache or it has expired, the MSAL library attempts to use the refresh token to acquire a new access token.

articles/active-directory-b2c/enable-authentication-spa-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ author: kengaderdus
66
manager: CelesteDG
77
ms.service: active-directory
88
ms.workload: identity
9-
ms.topic: reference
10-
ms.date: 06/25/2021
9+
ms.topic: how-to
10+
ms.date: 03/24/2023
1111
ms.author: kengaderdus
1212
ms.subservice: B2C
1313
ms.custom: "b2c-support"
@@ -93,7 +93,7 @@ app.listen(port, () => {
9393

9494
## Step 4: Create the SPA user interface
9595

96-
Add the SAP app `index.html` file. This file implements a user interface that's built with a Bootstrap framework, and it imports script files for configuration, authentication, and web API calls.
96+
Add the SPA app `index.html` file. This file implements a user interface that's built with a Bootstrap framework, and it imports script files for configuration, authentication, and web API calls.
9797

9898
The resources referenced by the *index.html* file are detailed in the following table:
9999

0 commit comments

Comments
 (0)