We are migrating our authentication of Azure from ADAL to MSAL. Our app support Intune feature.
We are facing login failure during MSAL login, if the app is already automatically enrolled using Company portal app or open-in work flow from the other apps is already Intune Enrollment successfully completed.
We are getting MsalException as unknown_error. Exception screenshot below
I am expecting there could be some workaround for user to do login and get a accessToken and IdToken through MSAL even MAMErollment is completed for the app OR is there a way to block Auto enrollment through Company portal app.
publicClientApplication.acquireToken(
new AcquireTokenParameters.Builder().startAuthorizationFromActivity(mActivity)
.withScopes(Collections.singletonList(azureInfoOnInterActiveLogin.getResourceUri().concat("/.default")))
.withCallback(authenticationCallback)
.withPrompt(Prompt.WHEN_REQUIRED)
.withLoginHint("[email protected]")
.build()
);
Note: With our legacy implementation of ADAL, acquireToken request is getting successful & able to get acessToken and idToken even the app is already automatically enrolled using Company portal. This is came up on MSAL only. Not on ADAL.
Looks like a bug.
isFullBrowser(final ResolveInfo resolveInfo)
is getting a null value which is not expected. Ensure you're using the latest version of the library. If the problem persists, please open a Github issue and share it's URL.