You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/active-directory/develop/includes/desktop-app/quickstart-uwp.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ You have two options to start your quickstart application:
33
33
34
34
1. Go to the [Azure portal - App registrations](https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/applicationsListBlade/quickStartType/UwpQuickstartPage/sourceType/docs) quickstart experience.
35
35
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.
37
37
38
38
### Option 2: Register and manually configure your application and code sample
39
39
@@ -94,7 +94,7 @@ When the app's window appears, you can select the **Call Microsoft Graph API** b
94
94
95
95
### MSAL.NET
96
96
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*:
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*:
98
98
99
99
```powershell
100
100
Install-Package Microsoft.Identity.Client
@@ -121,7 +121,7 @@ The value of `ClientId` is the **Application (client) ID** of the app you regist
121
121
122
122
### Requesting tokens
123
123
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)`.
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).
0 commit comments