AliGuemues
Results
1
issues of
AliGuemues
Hello, in our ASP .NET Application we use a new simplified way for authentication in our StartupExtensions.cs: ` services .AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme) .AddMicrosoftIdentityWebApp(objConfiguration.GetSection("Authentication:AzureAd")); services .AddAuthentication(JwtBearerDefaults.AuthenticationScheme) .AddMicrosoftIdentityWebApi(objConfiguration.GetSection("Authentication:AzureAdJWTApi"));` Right after these changes the Access...