Skip to content

Commit a33f1c5

Browse files
Merge pull request #225313 from Dickson-Mwendia/test-desktop-app-quickstart
Minor updates to desktop app quickstart
2 parents d2f1212 + 776af96 commit a33f1c5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/active-directory/develop/desktop-app-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.service: active-directory
99
ms.subservice: develop
1010
ms.topic: quickstart
1111
ms.workload: identity
12-
ms.date: 01/14/2022
12+
ms.date: 01/27/2023
1313
ms.author: dmwendia
1414
ms.custom: aaddev, identityplatformtop40, "scenarios:getting-started", mode-api
1515
zone_pivot_groups: desktop-app-quickstart

articles/active-directory/develop/includes/desktop-app/quickstart-uwp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ You have two options to start your quickstart application:
3333

3434
1. Go to the [Azure portal - App registrations](https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/applicationsListBlade/quickStartType/UwpQuickstartPage/sourceType/docs) quickstart experience.
3535
1. Enter a name for your application and select **Register**.
36-
1. Follow the instructions to download and automatically configure your new application for you in one click.
36+
1. Follow the instructions to download and automatically configure your new application.
3737

3838
### Option 2: Register and manually configure your application and code sample
3939

@@ -94,7 +94,7 @@ When the app's window appears, you can select the **Call Microsoft Graph API** b
9494

9595
### MSAL.NET
9696

97-
MSAL ([Microsoft.Identity.Client](https://www.nuget.org/packages/Microsoft.Identity.Client)) is the library used to sign in users and request security tokens. The security tokens are used to access an API protected by the Microsoft Identity platform. You can install MSAL by running the following command in Visual Studio's *Package Manager Console*:
97+
MSAL ([Microsoft.Identity.Client](/dotnet/api/microsoft.identity.client?)) is the library used to sign in users and request security tokens. The security tokens are used to access an API protected by the Microsoft Identity platform. You can install MSAL by running the following command in Visual Studio's *Package Manager Console*:
9898

9999
```powershell
100100
Install-Package Microsoft.Identity.Client
@@ -121,7 +121,7 @@ The value of `ClientId` is the **Application (client) ID** of the app you regist
121121

122122
### Requesting tokens
123123

124-
MSAL has two methods for acquiring tokens in a UWP app: `AcquireTokenInteractive` and `AcquireTokenSilent`.
124+
MSAL has two methods for acquiring tokens in a UWP app: [`AcquireTokenInteractive`](/dotnet/api/microsoft.identity.client.acquiretokeninteractiveparameterbuilder?) and [`AcquireTokenSilent`](/dotnet/api/microsoft.identity.client.acquiretokensilentparameterbuilder).
125125

126126
#### Get a user token interactively
127127

0 commit comments

Comments
 (0)