skip to Main Content

Azure – MSAL AcquireTokenInteractive redirects browser to unavaible localhost

We are using AcquireTokenInteractive to connect to EWS 365 like this: // using Microsoft.Identity.Client 4.61.1 var pca = PublicClientApplicationBuilder .CreateWithApplicationOptions(pcaOptions) // userId, tennantid .WithDefaultRedirectUri() .Build(); ... var result = await pca.AcquireTokenInteractive(ewsScopes).ExecuteAsync(); This is more or less what the example code…

VIEW QUESTION
Back To Top
Search