I am using ADAL library (v 2.15) for AAD authentication on windows 8 app.
For few users, we observe that it does not pop up to enter AD credentials and picks the live id of the user and the login fails .
Even after reinstalling the app the same issue persists.
Currently the code uses
await AuthContext.AcquireTokenAsync(_resourceId, _clientId, _redirectURI);
It works fine if we use
await
AuthContext.AcquireTokenAsync(_resourceId, _clientId, _redirectURI,PromptBehavior.Always);
But we don't want the pop up to appear everytime.
Any help how to solve this issue?