Android MSAL Login failed incase if My app is already Auto enrollment successful using Company portal app

326 Views Asked by At

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 enter image description here

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.

1

There are 1 best solutions below

4
On

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.