I have resolved the issue:
I upgraded the framework to .net5 removed legacy authentication / adal / identity nuget pacakages then installed newer versions, the code then worked as expected.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
We have an Azure WebApp using MSAL Identity to sign users in via AzureAD, we want to call MS Graph on behalf of the authenticated user to obtain user details and store these in custom cliams. we were previously using ADAL but are upgrading to MSAL.
The problem is calling Ms Graph it doenst work could someone advise where we have gone wrong ?
heres a code snippet
public void ConfigureServices(IServiceCollection services)
{
var initialScopes = Configuration.GetValue
I have resolved the issue:
I upgraded the framework to .net5 removed legacy authentication / adal / identity nuget pacakages then installed newer versions, the code then worked as expected.