C# .NET6 에서 Active Directory Authentication 사용하기
C# .NET6 에서 Active Directory Authentication 사용하기 .NET6 에서 Active Directory Authentication 사용하려면 PlatformParameters 부분에서 ICustomWebUi 를 요구합니다. var authContext = new AuthenticationContext("https://login.microsoftonline.com/common"); var result = await authContext.AcquireTokenAsync("https://graph.microsoft.com", "your app id", new Uri("urn:ietf:wg:oauth:2.0:oob"), new PlatformParameters(PromptBehav..