microsoft-authentication-library-for-dotnet
microsoft-authentication-library-for-dotnet copied to clipboard
Microsoft Authentication Library (MSAL) for .NET
**Is your feature request related to a problem? Please describe.** Currently we use our own logic to determine the current OS. MSAL Runtime provides it's own implementation to determine if...
**Logs and network traces** Without logs or traces, it is unlikely that the team can investigate your issue. Capturing logs and network traces is described in [Logging wiki](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/logging). The original...
**Is your feature request related to a problem? Please describe.** E&D customers would like to parse some of the IdP headers associated with a token request **Describe the solution you'd...
After days of trying nearly everything and reading - still no sucess ASP.NET Webforms, MSGraph login startup ` app.UseOpenIdConnectAuthentication(New OpenIdConnectAuthenticationOptions() With { .ClientId = clientId, .Authority = authority, .PostLogoutRedirectUri =...
**Logs and network traces**  ) **Which version of MSAL.NET are you using?** Microsoft.Identity.Client 4.42.1 **Platform** .NET Framework 4.8 **What authentication flow has the issue?** * Web app...
**Which version of MSAL.NET are you using?** Microsoft.Identity.Client 4.44 and Azure ADFS with customer certificate **Platform** .NET Standard, Xamarin Android, Xamarin iOS, Xamarin WPF with Xamarin Forms 5.0 **What authentication...
**Goal** What is the developer experience and how should MSAL.NET behave when mobile broker is not installed but is required by conditional access policies, for example, in Mobile App Management...
```csharp var options = new ConfidentialClientApplicationOptions { ClientId = TestConstants.ClientId, LogLevel = LogLevel.Verbose, EnablePiiLogging = true, IsDefaultPlatformLoggingEnabled = true, LogCallback = (level, msg, pii) => { log(msg); } // Not...