Skip to content

Commit 12d3e97

Browse files
committed
acquiring tokens, getting started
1 parent 813d884 commit 12d3e97

19 files changed

Lines changed: 38 additions & 51 deletions

msal-dotnet-articles/acquiring-tokens/acquire-token-silently.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
title: Acquire a token from the cache (MSAL.NET)
33
description: Learn how to acquire an access token silently (from the token cache) using the Microsoft Authentication Library for .NET (MSAL.NET).
44
services: active-directory
5-
author: Dickson-Mwendia
5+
author: cilwerner
66
manager: CelesteDG
7-
ms.author: dmwendia
7+
ms.author: cwerner
88
ms.date: 08/24/2023
99
ms.service: msal
1010
ms.subservice: msal-dotnet
@@ -13,7 +13,6 @@ ms.reviewer:
1313
ms.topic: how-to
1414
ms.custom: devx-track-csharp, aaddev, devx-track-dotnet
1515
#Customer intent: As an application developer, I want to learn how how to use the AcquireTokenSilent method so I can acquire tokens from the cache.
16-
1716
---
1817

1918
# Get a token from the token cache using MSAL.NET

msal-dotnet-articles/acquiring-tokens/acquiretokensilentasync-api.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: Understanding the AcquireTokenAsync API
33
description: Learn how to acquire tokens silently in public and confidential client applications using MSAL.NET
4-
author: Dickson-Mwendia
4+
author: cilwerner
55
manager: CelesteDG
6-
ms.author: dmwendia
6+
ms.author: cwerner
77
ms.date: 03/17/2023
88
ms.service: msal
99
ms.subservice: msal-dotnet
@@ -13,7 +13,6 @@ ms.topic: reference
1313
ms.custom: devx-track-csharp, aaddev
1414
#Customer intent:
1515
# Customer intent: As an application developer, I want to learn how to acquire tokens silently in public and confidential client applications using MSAL.NET
16-
1716
---
1817
# Understanding the `AcquireTokenAsync` API
1918

msal-dotnet-articles/acquiring-tokens/clear-token-cache.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
title: Clear the token cache (MSAL.NET)
33
description: Learn how to clear the token cache using the Microsoft Authentication Library for .NET (MSAL.NET).
44
services: active-directory
5-
author: Dickson-Mwendia
5+
author: cilwerner
66
manager: CelesteDG
7-
ms.author: dmwendia
7+
ms.author: cwerner
88
ms.date: 08/24/2023
99
ms.service: msal
1010
ms.subservice: msal-dotnet
@@ -13,7 +13,6 @@ ms.reviewer:
1313
ms.topic: how-to
1414
ms.custom: devx-track-csharp, aaddev, devx-track-dotnet
1515
#Customer intent: As an application developer, I want to learn how how to clear the token cache so I can .
16-
1716
---
1817

1918
# Clear the token cache using MSAL.NET

msal-dotnet-articles/acquiring-tokens/desktop-mobile/acquiring-tokens-interactively.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
title: Acquiring tokens interactively
33
description: "How to acquire tokens with MSAL.NET and user interaction."
44
services: active-directory
5-
author: Dickson-Mwendia
5+
author: cilwerner
66
manager: CelesteDG
7-
ms.author: dmwendia
7+
ms.author: cwerner
88
ms.date: 12/13/2023
99
ms.service: msal
1010
ms.subservice: msal-dotnet

msal-dotnet-articles/acquiring-tokens/desktop-mobile/adfs-support.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
title: ADFS support in MSAL.NET
33
description: Learn about Active Directory Federation Services (ADFS) support in the Microsoft Authentication Library for .NET (MSAL.NET).
44
services: active-directory
5-
author: Dickson-Mwendia
5+
author: cilwerner
66
manager: CelesteDG
7-
ms.author: dmwendia
7+
ms.author: cwerner
88
ms.date: 08/24/2023
99
ms.service: msal
1010
ms.subservice: msal-dotnet
@@ -13,7 +13,6 @@ ms.reviewer:
1313
ms.topic: conceptual
1414
ms.custom: devx-track-csharp, aaddev, devx-track-dotnet
1515
#Customer intent: As an application developer, I want to learn about AD FS support in MSAL.NET so I can decide if this platform meets my application development needs and requirements.
16-
1716
---
1817

1918
# Active Directory Federation Services support in MSAL.NET

msal-dotnet-articles/acquiring-tokens/desktop-mobile/device-code-flow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: Using Device Code Flow in MSAL.NET
33
description: "Interactive authentication with Microsoft Entra ID requires a web browser. However, in the case of devices and operating systems that do not provide a Web browser, Device Code Flow lets the user use another device (for instance another computer or a mobile phone) to sign-in interactively."
4-
author:
4+
author: cilwerner
55
manager:
6-
ms.author:
6+
ms.author: cwerner
77
ms.date: 05/20/2025
88
ms.service: msal
99
ms.subservice: msal-dotnet

msal-dotnet-articles/acquiring-tokens/desktop-mobile/integrated-windows-authentication.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: Using MSAL.NET with Integrated Windows Authentication (IWA)
33
description: "If your desktop or mobile application runs on Windows and on a machine connected to a Windows domain (Active Directory or Microsoft Entra joined) it is possible to use the Integrated Windows Authentication (IWA) to acquire a token silently. No UI is required when using the application."
4-
author:
4+
author: cilwerner
55
manager:
6-
ms.author:
6+
ms.author: cwerner
77
ms.date: 05/22/2025
88
ms.service: msal
99
ms.subservice: msal-dotnet

msal-dotnet-articles/acquiring-tokens/desktop-mobile/mobile-applications.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: Using MSAL.NET With .NET MAUI
33
description: "How to use MSAL.NET on mobile platforms."
4-
author:
4+
author: cilwerner
55
manager:
6-
ms.author:
6+
ms.author: cwerner
77
ms.date: 05/20/2025
88
ms.service: msal
99
ms.subservice: msal-dotnet

msal-dotnet-articles/acquiring-tokens/desktop-mobile/social-identities.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
title: Using MSAL.NET to sign-in users with social identities
33
description: "You can use MSAL.NET to sign-in users with social identities by using Azure AD B2C. Azure AD B2C is built around the notion of policies. In MSAL.NET, specifying a policy translates to providing an authority."
44
services: active-directory
5-
author: henrymbuguakiarie
5+
author: cilwerner
66
manager: CelesteDG
7-
ms.author: dmwendia
7+
ms.author: cwerner
88
ms.date: 05/21/2024
99
ms.service: msal
1010
ms.subservice: msal-dotnet
@@ -14,7 +14,6 @@ ms.topic: conceptual
1414
ms.custom: devx-track-csharp, aaddev, devx-track-dotnet
1515
#Customer intent:
1616
# Customer intent: As an application developer, I want to learn about specific considerations when using Azure AD B2C and MSAL.NET so I can decide if this platform meets my application development needs and requirements.
17-
1817
---
1918

2019
# Using MSAL.NET to sign-in users with social identities

msal-dotnet-articles/acquiring-tokens/desktop-mobile/username-password-authentication.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: Username and password (ROPC) authentication with MSAL.NET
33
description: "In your desktop application, you can use the username and password flow to acquire a token silently. No UI is required when using the application."
4-
author:
4+
author: cilwerner
55
manager:
6-
ms.author:
6+
ms.author: cwerner
77
ms.date: 05/20/2025
88
ms.service: msal
99
ms.subservice: msal-dotnet

0 commit comments

Comments
 (0)