May 30 2021
08:27 AM
- last edited on
Jan 14 2022
03:27 PM
by
TechCommunityAP
May 30 2021
08:27 AM
- last edited on
Jan 14 2022
03:27 PM
by
TechCommunityAP
If my desktop app is coded to use WAM (web account manager), for eg.,
var pca = PublicClientApplicationBuilder.Create("client_id") .WithExperimentalFeatures() // in public preview .WithBroker() .Build();
is it possible to override this behavior (may be with some registry setting) and make sure that my app is not using WAM to get the token.
Instead app uses just MSAL lib and MSAL does all the mediation with AAD without WAM to get the token.
Thanks.