Skip to content
This repository has been archived by the owner on Jun 30, 2023. It is now read-only.

ADAL 5.1.0 Aquire Silent Token isn't working on Android - calls broker UI every call. #1626

Closed
ghost opened this issue Jul 9, 2019 · 4 comments

Comments

@ghost
Copy link

ghost commented Jul 9, 2019

Which Version of ADAL are you using ?
5.1.0

Which platform has the issue?
Xamarin Android

What authentication flow has the issue?
Other? - please describe;
Broker via Company Portal version 5.0.4464.0

Is this a new or existing app?
These are existing apps that we are migrating over to Microsoft InTune and Broker based authentication as part of the process. We have 5 different apps all experiencing the same behavior.

Repro

    public async Task<CacheToken> AcquireTokenSilentAsync(
        Endpoint endpoint, 
        [CallerMemberName] string memberName = "",
        [CallerLineNumber] int lineNumber = 0)

    {
        AuthenticationResult results = null;
        try
        {
            var authContext = new AuthenticationContext(endpoint.Authority);
            //fixes for security groups in iOS per
            //https://aka.ms/adal-net-ios-keychain-access

#if iOS
authContext.iOSKeychainSecurityGroup = endpoint.iOSKeychainSecurityGroup;
#endif

            _logBuilder.Clear();
            LoggerCallbackHandler.LogCallback = AdalLog;
            LoggerCallbackHandler.PiiLoggingEnabled = true;

            _loggingService.LogInformation(typeof(AzureAuthenticatorService),
                                           $"Before Acquiring Silent Token values",
                                           memberName,
                                           lineNumber,
                                           ComposePropertyValues(endpoint));

            results = await authContext.AcquireTokenSilentAsync(endpoint.ResourceId, endpoint.ApplicationId);
        }
      catch (AdalSilentTokenAcquisitionException astae)
        {
            _loggingService.LogError(typeof(AzureAuthenticatorService),
                                     (System.Exception)astae,
                                     $"AdalSilientTokenAquisitionException {astae?.ErrorCode}",
                                     memberName,
                                     lineNumber,
                                     astae.Data);
            //get the token regularly since it's not in cache
            //per documentation:  https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/wiki/AcquireTokenSilentAsync-using-a-cached-token
            return await AuthenticateEndpoint(endpoint);
        }
     
        //convert to cache token to send back
        var cacheToken = CacheToken.GetCacheToken(endpoint, results);
        return cacheToken;
    }

Expected behavior
I expect the token to be returned from the cache so that company portal does not appear every time I call to get a token silently.

Actual behavior
Every call we make calls up the broker UI, the user taps on there username and then they are returned to our app and we get a token. See attached video.

Additional context/ Logs / Screenshots
Logs: In the app I make three calls to Graph - one to get a token to use with InTune to enroll, and then two graph calls to get user profile information. Before each call I call the aquire token silent and in iOS this works perfect. In Android we are seeing the company portal appear every call.

  
screencapture-1562690828328.mp4.zip

[MAMInfo] MAMInfo initialized. Debug=false, UseTestAgent=false, ManagedDialogDisabled=false, DeprecationDialogDisabled=false, PolicyRequired=false, MultiIdentityEnabled=false, FullBackupContent=true, UseDefaultEnrollment=false, ExceptionOnInit=false, Debuggable=false
[l.atf.xformsre] The ClassLoaderContext is a special shared library.
[monodroid] Using runtime path: /data/app/com.eygsl.atf.xformsref-BtEqqpUqjgaehIRF6-YkzQ==/lib/arm64
[monodroid] Trying to load sgen from: /data/app/com.eygsl.atf.xformsref-BtEqqpUqjgaehIRF6-YkzQ==/lib/arm64/libmonosgen-2.0.so
[monodroid-gc] GREF GC Threshold: 46080
[FirebaseInitProvider] FirebaseApp initialization unsuccessful
[l.atf.xformsre] JNI RegisterNativeMethods: attempt to register 0 native methods for xamarin.essentials.fileProvider
[l.atf.xformsre] The ClassLoaderContext is a special shared library.
[vndksupport] Loading /vendor/lib64/egl/libEGL_adreno.so from current namespace instead of sphal namespace.
[libEGL] loaded /vendor/lib64/egl/libEGL_adreno.so
[vndksupport] Loading /vendor/lib64/egl/libGLESv1_CM_adreno.so from current namespace instead of sphal namespace.
[libEGL] loaded /vendor/lib64/egl/libGLESv1_CM_adreno.so
[vndksupport] Loading /vendor/lib64/egl/libGLESv2_adreno.so from current namespace instead of sphal namespace.
[libEGL] loaded /vendor/lib64/egl/libGLESv2_adreno.so
[AppCompatDelegate] The Activity's LayoutInflater already has a Factory installed so we can not install AppCompat's
[DecorView] createDecorCaptionView >> DecorView@2ec737f[], isFloating: false, isApplication: true, hasWindowDecorCaption: false, hasWindowControllerCallback: true
[Activity] Can request only one set of permissions at a time
[Activity] Can request only one set of permissions at a time
SetValue: Can not convert Xamarin.Forms.OnPlatform1[System.Int32] to type 'System.Double' [chatty] uid=10448(com.eygsl.atf.xformsref) identical 2 lines SetValue: Can not convert Xamarin.Forms.OnPlatform1[System.Int32] to type 'System.Double'
[ConnectivityManager] requestNetwork; CallingUid : 10448, CallingPid : 1491
[OpenGLRenderer] Skia GL Pipeline
[EmergencyMode] [EmergencyManager] android createPackageContext successful
[InputTransport] Input channel constructed: fd=73
[ViewRootImpl@f76ccbe[MainActivity]] setView = DecorView@2ec737f[MainActivity] TM=true MM=false
[ViewRootImpl@f76ccbe[MainActivity]] setWindowStopped(false) old=false
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] LoadData Before Acquiring Silent Token values
[] 2019-07-09T16:34:15.6693730Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: BrokerProxy: Getting the Android context
[] 2019-07-09T16:34:15.7161610Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: ADAL PCL.Android with assembly version '5.1.0.0', file version '5.1.0.0' and informational version '5.1.0' is running...
[] 2019-07-09T16:34:15.7204940Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: === Token Acquisition started:
[] CacheType: Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache (0 items)
[] Authentication Target: User
[] , Authority Host: login.microsoftonline.com
[l.atf.xformsre] Explicit concurrent copying GC freed 24098(2MB) AllocSpace objects, 8(288KB) LOS objects, 73% free, 2MB/8MB, paused 65us total 16.815ms
[NetworkSecurityConfig] No Network Security Config specified, using platform default
[System.out] (HTTPLog)-Static: isSBSettingEnabled false
[System.out] (HTTPLog)-Static: isSBSettingEnabled false
[Choreographer] Skipped 37 frames! The application may be doing too much work on its main thread.
[InputMethodManager] HSIFW - flag : 0 Pid : 1491
[InputMethodManager] hideSoftInputFromWindow ignore mServedView == null or mServedView.getWindowToken() != windowToken, mServedView :0
[ViewRootImpl@f76ccbe[MainActivity]] dispatchAttachedToWindow
[ViewRootImpl@f76ccbe[MainActivity]] Relayout returned: old=[0,0][1080,2220] new=[0,0][1080,2220] result=0x7 surface={valid=true 512520261632} changed=true
[Adreno] QUALCOMM build : 1c7d42c, If23bcb88b5
[Adreno] Build Date : 01/28/19
[Adreno] OpenGL ES Shader Compiler Version: EV031.25.03.01
[Adreno] Local Branch :
[Adreno] Remote Branch : refs/tags/AU_LINUX_ANDROID_LA.UM.7.4.R1.09.00.00.453.036
[Adreno] Remote Branch : NONE
[Adreno] Reconstruct Branch : NOTHING
[Adreno] Build Config : S L 6.0.7 AArch64
[vndksupport] Loading /vendor/lib64/hw/gralloc.msm8998.so from current namespace instead of sphal namespace.
[Adreno] PFP: 0x005ff112, ME: 0x005ff066
[ConfigStore] android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasWideColorDisplay retrieved: 0
[ConfigStore] android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasHDRDisplay retrieved: 0
[OpenGLRenderer] Initialized EGL, version 1.4
[OpenGLRenderer] Swap behavior 2
[TcpOptimizer] TcpOptimizer-ON
[OpenGLRenderer] eglCreateWindowSurface = 0x7752837a80, 0x7754969010
[] 2019-07-09T16:34:16.6423710Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Loading from cache.
[ViewRootImpl@f76ccbe[MainActivity]] MSG_WINDOW_FOCUS_CHANGED 1 1
[InputMethodManager] prepareNavigationBarInfo() DecorView@2ec737f[MainActivity]
[InputMethodManager] getNavigationBarColor() -855310
[InputMethodManager] prepareNavigationBarInfo() DecorView@2ec737f[MainActivity]
[InputMethodManager] getNavigationBarColor() -855310
[InputMethodManager] Starting input: tba=com.eygsl.atf.xformsref ic=null mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
[InputMethodManager] startInputInner - Id : 0
[InputMethodManager] startInputInner - mService.startInputOrWindowGainedFocus
[InputTransport] Input channel constructed: fd=85
[] 2019-07-09T16:34:16.6941790Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Deserialized 1 items to token cache.
[] 2019-07-09T16:34:16.6981250Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:16.7103390Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: A matching entry was found in the cache
[] 2019-07-09T16:34:16.7128660Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Cross Tenant refresh token was found in the cache
[] 2019-07-09T16:34:16.7150070Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: An old item was removed from the cache
[] 2019-07-09T16:34:16.7154190Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:16.7155390Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:16.7156210Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:16.7242210Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:16.7244370Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:16.7245400Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:16.7246180Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:16.7249630Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:16.7250760Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:16.7251630Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:16.7253880Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:16.7256950Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:16.7257990Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:16.7258800Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:16.7259790Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:16.7263010Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:16.7264100Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:16.7264980Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:16.7265730Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:16.7268450Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:16.7294500Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Serializing token cache with 0 items.
[] 2019-07-09T16:34:16.7362110Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Either a token was not found or an exception was thrown.
[] 2019-07-09T16:34:16.7368530Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Is Android Broker use configured via PlatformParamters? False
[] 2019-07-09T16:34:16.7369600Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Can invoke broker? False
[] 2019-07-09T16:34:16.7370460Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Cannot invoke the broker directly, may require install ...
[] 2019-07-09T16:34:16.7392200Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Check and AcquireToken using broker
[] 2019-07-09T16:34:16.7394380Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Broker invocation is NOT required
[] 2019-07-09T16:34:16.7401100Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: No token matching arguments found in the cache
[] 2019-07-09T16:34:16.7616530Z: f85dfea9-f3ce-4ea6-9c16-5fafb521e2c0 - AdalLoggerBase.cs: Exception type: Microsoft.IdentityModel.Clients.ActiveDirectory.AdalSilentTokenAcquisitionException
[] , ErrorCode: failed_to_acquire_token_silently
[]
[] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenSilentHandler.SendTokenRequestAsync () [0x00022] in <59ab81ad5c434680a79a77c359b9442d>:0
[] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenHandlerBase.CheckAndAcquireTokenUsingBrokerAsync () [0x000df] in <59ab81ad5c434680a79a77c359b9442d>:0
[] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenHandlerBase.RunAsync () [0x004db] in <59ab81ad5c434680a79a77c359b9442d>:0
[l.atf.xformsre] JNI RegisterNativeMethods: attempt to register 0 native methods for md5a6256f8d5bc17d3565a450e514d4a6e7.MaterialContextThemeWrapper
[l.atf.xformsre] JNI RegisterNativeMethods: attempt to register 0 native methods for md51558244f76c53b6aeda52c8a337f2c37.CellRenderer_RendererHolder
[AbsListView] in onLayout changed
[vndksupport] Loading /vendor/lib64/hw/android.hardware.graphics.mapper@2.0-impl.so from current namespace instead of sphal namespace.
[vndksupport] Loading /vendor/lib64/hw/gralloc.msm8998.so from current namespace instead of sphal namespace.
[InputMethodManager] prepareNavigationBarInfo() DecorView@2ec737f[MainActivity]
[InputMethodManager] getNavigationBarColor() -855310
[InputMethodManager] Starting input: tba=com.eygsl.atf.xformsref ic=null mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
[InputMethodManager] startInputInner - Id : 0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Error] LoadData AdalSilientTokenAquisitionException failed_to_acquire_token_silentlyMicrosoft.IdentityModel.Clients.ActiveDirectory.AdalSilentTokenAcquisitionException: Failed to acquire token silently as no token was found in the cache. Call method AcquireToken
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenSilentHandler.SendTokenRequestAsync () [0x00022] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenHandlerBase.CheckAndAcquireTokenUsingBrokerAsync () [0x000df] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenHandlerBase.RunAsync () [0x0070e] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentCommonAsync (System.String resource, Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.ClientCreds.ClientKey clientKey, Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier userId, Microsoft.IdentityModel.Clients.ActiveDirectory.IPlatformParameters parameters) [0x000cb] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync (System.String resource, System.String clientId, Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier userId) [0x00084] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync (System.String resource, System.String clientId) [0x0007d] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at EY.Mobile.Lib.ADAL.AzureAuthenticatorService.AcquireTokenSilentAsync (EY.Mobile.Lib.ADAL.Endpoint endpoint, System.String memberName, System.Int32 lineNumber) [0x000fe] in <4bae2b5195584b8ea48010c33feccf75>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] ErrorCode: failed_to_acquire_token_silently
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] AcquireTokenSilentAsync Before Acquiring Token values
[] 2019-07-09T16:34:17.0750980Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: BrokerProxy: Getting the Android context
[] 2019-07-09T16:34:17.0755600Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: ADAL PCL.Android with assembly version '5.1.0.0', file version '5.1.0.0' and informational version '5.1.0' is running...
[] 2019-07-09T16:34:17.0757270Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: === Token Acquisition started:
[] CacheType: Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache (0 items)
[] Authentication Target: User
[] , Authority Host: login.microsoftonline.com
[] 2019-07-09T16:34:17.0777590Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Loading from cache.
[] 2019-07-09T16:34:17.0780550Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Deserialized 0 items to token cache.
[] 2019-07-09T16:34:17.0781690Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:17.0782780Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:17.0783520Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:17.0787280Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:17.0788310Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:17.0789070Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:17.0789710Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:17.0792120Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:17.0793010Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:17.0793730Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:17.0794360Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:17.0796710Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:17.0797580Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:17.0798290Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:17.0798930Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:17.0800910Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:17.0801740Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:17.0802470Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:17.0803100Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:17.0805090Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:17.0805920Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:17.0806630Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:17.0807260Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:17.0809590Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:17.0810390Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Either a token was not found or an exception was thrown.
[] 2019-07-09T16:34:17.0812030Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Is Android Broker use configured via PlatformParamters? True
[] 2019-07-09T16:34:17.1236610Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: BrokerProxy: Found the Authenticator on the device
[] 2019-07-09T16:34:17.1272390Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: BrokerProxy: CheckAccount. Getting authenticator types 41
[] 2019-07-09T16:34:17.1291150Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: BrokerProxy: Getting the account list 0
[] 2019-07-09T16:34:17.1292830Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: BrokerProxy: Package name is com.microsoft.windowsintune.companyportal
[] 2019-07-09T16:34:17.1337830Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: BrokerProxy: Broker supports adding accounts
[] 2019-07-09T16:34:17.1339620Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Can invoke broker? True
[] 2019-07-09T16:34:17.1340330Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Trying to acquire a token using the broker...
[ViewRootImpl@f76ccbe[MainActivity]] MSG_RESIZED: frame=Rect(0, 0 - 1080, 2220) ci=Rect(0, 63 - 0, 126) vi=Rect(0, 63 - 0, 126) or=1
[] 2019-07-09T16:34:17.1462010Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: BrokerProxy: CheckAccount. Getting authenticator types 41
[System.out] (HTTPLog)-Static: isSBSettingEnabled false
[System.out] (HTTPLog)-Static: isSBSettingEnabled false
[] 2019-07-09T16:34:17.1478640Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: BrokerProxy: Getting the account list 0
[] 2019-07-09T16:34:17.1480300Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: BrokerProxy: Package name is com.microsoft.windowsintune.companyportal
[] 2019-07-09T16:34:17.1490410Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: BrokerProxy: Broker supports adding accounts
[] 2019-07-09T16:34:17.1498500Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: It switched to broker for context
[] 2019-07-09T16:34:17.1499570Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: User is not specified for background token request
[] 2019-07-09T16:34:17.1500270Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Token is not returned from backgroud call
[] 2019-07-09T16:34:17.1500910Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Launch activity for Authenticator
[] 2019-07-09T16:34:17.1501690Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Starting Authentication Activity
[] 2019-07-09T16:34:17.1502300Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Initial request to authenticator
[] 2019-07-09T16:34:17.1610950Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: BrokerProxy: Broker Account Name:
[] 2019-07-09T16:34:17.1624510Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: callerActivity.MainLooper returned: Looper (main, tid 2) {a0e0867}
[] 2019-07-09T16:34:17.2346030Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: BrokerProxy: Intent created from BundleResult is not null.
[] 2019-07-09T16:34:17.2360500Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Calling activity pid:1491 tid:1548uid:10448
[InputMethodManager] HSIFW - flag : 0 Pid : 1491
[ViewRootImpl@f76ccbe[MainActivity]] MSG_WINDOW_FOCUS_CHANGED 0 1
[InputMethodManager] prepareNavigationBarInfo() DecorView@2ec737f[MainActivity]
[InputMethodManager] getNavigationBarColor() -855310
[System.out] (HTTPLog)-Static: isSBSettingEnabled false
[System.out] (HTTPLog)-Static: isSBSettingEnabled false
[OpenGLRenderer] eglDestroySurface = 0x7752837a80, 0x7754969000
[ViewRootImpl@f76ccbe[MainActivity]] Relayout returned: old=[0,0][1080,2220] new=[0,0][1080,2220] result=0x5 surface={valid=false 0} changed=true
[InputTransport] Input channel destroyed: fd=85
[ViewRootImpl@f76ccbe[MainActivity]] setWindowStopped(true) old=false
[ViewRootImpl@f76ccbe[MainActivity]] Surface release. android.view.WindowManagerGlobal.setStoppedState:669 android.app.Activity.performStop:7647 android.app.ActivityThread.callActivityOnStop:4373 android.app.ActivityThread.performStopActivityInner:4351 android.app.ActivityThread.handleStopActivity:4426 android.app.servertransaction.StopActivityItem.execute:41 android.app.servertransaction.TransactionExecutor.executeLifecycleState:145 android.app.servertransaction.TransactionExecutor.execute:70
[ViewRootImpl@f76ccbe[MainActivity]] Relayout returned: old=[0,0][1080,2220] new=[0,0][1080,2220] result=0x1 surface={valid=false 0} changed=false
[] 2019-07-09T16:34:21.7653690Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Received Activity Result(2004)
[ViewRootImpl@f76ccbe[MainActivity]] setWindowStopped(false) old=true
[ViewRootImpl@f76ccbe[MainActivity]] setWindowStopped(false) old=false
[] 2019-07-09T16:34:21.7921330Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Storing token in the cache...
[] 2019-07-09T16:34:21.7925350Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Deserialized 0 items to token cache.
[] 2019-07-09T16:34:21.7934450Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: An item was stored in the cache
[] 2019-07-09T16:34:21.7962600Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Client Info is missing. Skipping MSAL refresh token cache write
[] 2019-07-09T16:34:21.7964850Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Serializing token cache with 1 items.
[ViewRootImpl@f76ccbe[MainActivity]] Relayout returned: old=[0,0][1080,2220] new=[0,0][1080,2220] result=0x7 surface={valid=true 512446095360} changed=true
[OpenGLRenderer] eglCreateWindowSurface = 0x7754a73b00, 0x77502ae010
[ViewRootImpl@f76ccbe[MainActivity]] MSG_WINDOW_FOCUS_CHANGED 1 1
[InputMethodManager] prepareNavigationBarInfo() DecorView@2ec737f[MainActivity]
[InputMethodManager] getNavigationBarColor() -855310
[InputMethodManager] prepareNavigationBarInfo() DecorView@2ec737f[MainActivity]
[InputMethodManager] getNavigationBarColor() -855310
[InputMethodManager] Starting input: tba=com.eygsl.atf.xformsref ic=null mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
[InputMethodManager] startInputInner - Id : 0
[InputMethodManager] startInputInner - mService.startInputOrWindowGainedFocus
[InputTransport] Input channel constructed: fd=90
[] 2019-07-09T16:34:21.8575000Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: === Token Acquisition finished successfully. An access token was returned: Expiration Time: 7/9/2019 5:34:21 PM +00:00
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] AuthenticateEndpoint $$INFO: Azure Auth$$ Logs: [Verbose] 2019-07-09T16:34:17.0752580Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: BrokerProxy: Getting the Android context
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:17.0756170Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: ADAL PCL.Android with assembly version '5.1.0.0', file version '5.1.0.0' and informational version '5.1.0' is running...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information:pii] 2019-07-09T16:34:17.0757750Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: === Token Acquisition started:
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] Authority: https://login.microsoftonline.com/eygs.onmicrosoft.com/
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] Resource: https://graph.microsoft.com
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] ClientId: 852e8054-ba53-4814-ae1c-6901166d0a06
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] CacheType: Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache (0 items)
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] Authentication Target: User
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService]
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:17.0778390Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Loading from cache.
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:17.0781150Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Deserialized 0 items to token cache.
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:17.0782250Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Looking up cache for a token...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:17.0783290Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: No matching token was found in the cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:17.0783920Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:17.0787910Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:17.0788740Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Looking up cache for a token...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:17.0789470Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: No matching token was found in the cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:17.0790260Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:17.0792650Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:17.0793430Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Looking up cache for a token...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:17.0794130Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: No matching token was found in the cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:17.0794750Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:17.0797200Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:17.0797980Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Looking up cache for a token...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:17.0798690Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: No matching token was found in the cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:17.0799300Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:17.0801390Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:17.0802160Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Looking up cache for a token...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:17.0802870Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: No matching token was found in the cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:17.0803490Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:17.0805540Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:17.0806320Z: db80e563-2016-4da3-a6d4-cfa5bd88eb0b - AdalLoggerBase.cs: Looking up cache for a token
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] AuthenticateEndpoint $$INFO: Azure Auth$$ Log: Access Token: eyJ0eXAiOiJKV1QiLCJub25jZSI6IkFRQUJBQUFBQUFEQ29NcGpKWHJ4VHE5Vkc5dGUtN0ZYQ1hKZFJSb3Q5R1NPbERoN3FkREtNMGdEUkxtcklGYVFrTFlBMVBPbXJ6Zm4yUjRKREFCRDRvUzJyNl9GdFM1Yk5mRTY3X0lmcldDTkk2cmh0N1dlUFNBQSIsImFsZyI6IlJTMjU2IiwieDV0IjoiQ3RmUUM4TGUtOE5zQzdvQzJ6UWtacGNyZk9jIiwia2lkIjoiQ3RmUUM4TGUtOE5zQzdvQzJ6UWtacGNyZk9jIn0.eyJhdWQiOiJodHRwczovL2dyYXBoLm1pY3Jvc29mdC5jb20iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC81Yjk3M2Y5OS03N2RmLTRiZWItYjI3ZC1hYTBjNzBiODQ4MmMvIiwiaWF0IjoxNTYyNjg5NzYyLCJuYmYiOjE1NjI2ODk3NjIsImV4cCI6MTU2MjY5MzY2MiwiYWNjdCI6MCwiYWNyIjoiMSIsImFpbyI6IkFWUUFxLzhMQUFBQW1ibWRzR0I0QnJxY3ExTEJNekMya0JUYjFIVWpNbGN3NzcrNjR2czJlSlB3WWpCaVhWVlRVMzh1QWpKMXhkQXBocDZyd1RMbFpQY1lYT3hjNnQwNGtnaWxad0JlS1lIUHZqdUNGMFFoaUFzPSIsImFtciI6WyJwd2QiLCJyc2EiXSwiYXBwX2Rpc3BsYXluYW1lIjoiRVktR0JMLUNCUy1SLU4tTy1YYW1hcmluLXJlZkFwcC0xLjAtUFJEIiwiYXBwaWQiOiI4NTJlODA1NC1iYTUzLTQ4MTQtYWUxYy02OTAxMTY2ZDBhMDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjZhOWQxN2RkLTJkYjctNDQyMS05N2FjLWNiYTlmNmM4NjU1ZSIsImZhbWlseV9uYW1lIjoiTGFCZWF1IiwiZ2l2ZW5fbmFtZSI6IkFhcm9uIiwiaXBhZGRyIjoiMTc0LjIxOC4xMC4yMjUiLCJuYW1lIjoiQWFyb24gQSBMYUJlYXUiLCJvaWQiOiJjZDMxM2RmZi1lY2VhLTRhOTQtYTk5ZC1iMTFiMjNiMzlkMTEiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMzgxNDQ0OTgxNi0xMTQ3NDE0NzQ0LTMyODcxMjYyNDUtNTQ2NDI4IiwicGxhdGYiOiIxIiwicHVpZCI6IjEwMDNCRkZEOTRGRDJERTAiLCJzY3AiOiJBbGxTaXRlcy5NYW5hZ2UgQWxsU2l0ZXMuUmVhZCBBbGxTaXRlcy5Xcml0ZSBHcm91cC5SZWFkLkFsbCBNeUZpbGVzLlJlYWQgTXlGaWxlcy5Xcml0ZSBvcGVuaWQgVXNlci5SZWFkIiwic2lnbmluX3N0YXRlIjpbImR2Y19tbmdkIiwiZHZjX2NtcCIsImR2Y19tbmdkX2FwcCJdLCJzdWIiOiJiV1A1U2xvekhTTDd6ZXB1UTIzQjFuR2FwaWVVRk90eF84cnRmSkduMDE4IiwidGlkIjoiNWI5NzNmOTktNzdkZi00YmViLWIyN2QtYWEwYzcwYjg0ODJjIiwidW5pcXVlX25hbWUiOiJBYXJvbi5MZUJlYXVAZXkuY29tIiwidXBuIjoiQWFyb24uTGVCZWF1QGV5LmNvbSIsInV0aSI6InZ6Wi1sSjJYT2tHRUNiUEZWNS0yQUEiLCJ2ZXIiOiIxLjAiLCJ4bXNfdGNkdCI6MTQxODI1MDgwNX0.aXmczhBhRRZ-BvIcXG3RQl6sCT1iKuBvFksamUVw-Rx0Tmvfq8U5SLNCAXqbyRj0GlKgg3QOZRzhuADLTWqAj77qnCSKpCDmOAtXS-y7r2c9yw_tf912BlXXQft5A7LPnXwDtWx2iOktu2GgViE-qaqxFLmol67WDCqs1ZEW0o3U15OqzXR5bPpybtaMatVsVnJbScR9Yr3sDibSEsqS2UkDdRiYA8KI2xEguiB2ZEjIjH6ES_MfeubchnN1ndZe_yUzrZJg0w4z9CrS-M6BPXOWNGJ9iyqvcsUOiEcZ_2p07zhuVguJel--Qk3Kr-ZsBZJXZ_vg5kcB7VF1hYWjeg
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService]
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] Access Token Type: Bearer
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService]
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] Expires On: 7/9/2019 5:34:21 PM +00:00
[] 2019-07-09T16:34:21.8702970Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Deserialized 1 items to token cache.
[EY.Mobile.Droid.Intune.Enrollment.EnrollmentService] [Information] RegisterAndEnrollAccount $$ENROLLMENT LOG$$ UPN Aaron.LeBeau@ey.com
[ViewRootImpl@f76ccbe[MainActivity]] ViewPostIme pointer 0
[AbsListView] reportScrollStateChange() newState : 1
[ViewRootImpl@f76ccbe[MainActivity]] ViewPostIme pointer 1
[AbsListView] onTouchUp() mTouchMode : 3
[AbsListView] onTouchUp() TOUCH_MODE_SCROLL initialVelocity : -8805
[AbsListView] reportScrollStateChange() newState : 2
[ViewRootImpl@f76ccbe[MainActivity]] ViewPostIme pointer 0
[ViewRootImpl@f76ccbe[MainActivity]] ViewPostIme pointer 1
[AbsListView] onTouchUp() mTouchMode : 3
[AbsListView] onTouchUp() TOUCH_MODE_SCROLL initialVelocity : -10599
[l.atf.xformsre] Explicit concurrent copying GC freed 61796(3MB) AllocSpace objects, 29(852KB) LOS objects, 68% free, 2MB/8MB, paused 72us total 23.925ms
[ViewRootImpl@f76ccbe[MainActivity]] ViewPostIme pointer 0
[ViewRootImpl@f76ccbe[MainActivity]] ViewPostIme pointer 1
[AbsListView] onTouchUp() mTouchMode : 3
[AbsListView] onTouchUp() TOUCH_MODE_SCROLL initialVelocity : -6411
[AbsListView] reportScrollStateChange() newState : 0
[ViewRootImpl@f76ccbe[MainActivity]] ViewPostIme pointer 0
[AbsListView] reportScrollStateChange() newState : 1
[ViewRootImpl@f76ccbe[MainActivity]] ViewPostIme pointer 1
[AbsListView] onTouchUp() mTouchMode : 3
[AbsListView] onTouchUp() TOUCH_MODE_SCROLL initialVelocity : -558
[AbsListView] reportScrollStateChange() newState : 2
[AbsListView] reportScrollStateChange() newState : 0
[ViewRootImpl@f76ccbe[MainActivity]] ViewPostIme pointer 0
[ViewRootImpl@f76ccbe[MainActivity]] ViewPostIme pointer 1
[AbsListView] onTouchUp() mTouchMode : 0
[InputMethodManager] HSIFW - flag : 0 Pid : 1491
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] SetupHttpClient Before Acquiring Silent Token values
[] 2019-07-09T16:34:28.7872320Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: BrokerProxy: Getting the Android context
[] 2019-07-09T16:34:28.7876220Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: ADAL PCL.Android with assembly version '5.1.0.0', file version '5.1.0.0' and informational version '5.1.0' is running...
[] 2019-07-09T16:34:28.7877810Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: === Token Acquisition started:
[] CacheType: Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache (1 items)
[] Authentication Target: User
[] , Authority Host: login.microsoftonline.com
[] 2019-07-09T16:34:28.7879660Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Loading from cache.
[] 2019-07-09T16:34:28.7892620Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Deserialized 1 items to token cache.
[] 2019-07-09T16:34:28.7894090Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:28.7895430Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: A matching entry was found in the cache
[] 2019-07-09T16:34:28.7896170Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Cross Tenant refresh token was found in the cache
[] 2019-07-09T16:34:28.7897230Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: An old item was removed from the cache
[] 2019-07-09T16:34:28.7897970Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:28.7898660Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:28.7899270Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:28.7902910Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:28.7903780Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:28.7904980Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:28.7905620Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:28.7907730Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:28.7908670Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:28.7909370Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:28.7909990Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:28.7912030Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:28.7912860Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:28.7913550Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:28.7914150Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:28.7916150Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:28.7916980Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:28.7917840Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:28.7918460Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:28.7920470Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:28.7921330Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Serializing token cache with 0 items.
[] 2019-07-09T16:34:28.7925600Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Either a token was not found or an exception was thrown.
[] 2019-07-09T16:34:28.7926490Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Is Android Broker use configured via PlatformParamters? False
[] 2019-07-09T16:34:28.7927150Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Can invoke broker? False
[] 2019-07-09T16:34:28.7927900Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Cannot invoke the broker directly, may require install ...
[] 2019-07-09T16:34:28.7928630Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Check and AcquireToken using broker
[] 2019-07-09T16:34:28.7929250Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Broker invocation is NOT required
[] 2019-07-09T16:34:28.7929940Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: No token matching arguments found in the cache
[] 2019-07-09T16:34:28.7958950Z: 3bc02bd7-9885-41fa-a9b6-66cb14952ac1 - AdalLoggerBase.cs: Exception type: Microsoft.IdentityModel.Clients.ActiveDirectory.AdalSilentTokenAcquisitionException
[] , ErrorCode: failed_to_acquire_token_silently
[]
[] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenSilentHandler.SendTokenRequestAsync () [0x00022] in <59ab81ad5c434680a79a77c359b9442d>:0
[] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenHandlerBase.CheckAndAcquireTokenUsingBrokerAsync () [0x000df] in <59ab81ad5c434680a79a77c359b9442d>:0
[] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenHandlerBase.RunAsync () [0x004db] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Error] SetupHttpClient AdalSilientTokenAquisitionException failed_to_acquire_token_silentlyMicrosoft.IdentityModel.Clients.ActiveDirectory.AdalSilentTokenAcquisitionException: Failed to acquire token silently as no token was found in the cache. Call method AcquireToken
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenSilentHandler.SendTokenRequestAsync () [0x00022] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenHandlerBase.CheckAndAcquireTokenUsingBrokerAsync () [0x000df] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenHandlerBase.RunAsync () [0x0070e] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentCommonAsync (System.String resource, Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.ClientCreds.ClientKey clientKey, Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier userId, Microsoft.IdentityModel.Clients.ActiveDirectory.IPlatformParameters parameters) [0x000cb] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync (System.String resource, System.String clientId, Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier userId) [0x00084] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync (System.String resource, System.String clientId) [0x0007d] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at EY.Mobile.Lib.ADAL.AzureAuthenticatorService.AcquireTokenSilentAsync (EY.Mobile.Lib.ADAL.Endpoint endpoint, System.String memberName, System.Int32 lineNumber) [0x000fe] in <4bae2b5195584b8ea48010c33feccf75>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] ErrorCode: failed_to_acquire_token_silently
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] AcquireTokenSilentAsync Before Acquiring Token values
[] 2019-07-09T16:34:28.8014300Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: BrokerProxy: Getting the Android context
[] 2019-07-09T16:34:28.8017280Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: ADAL PCL.Android with assembly version '5.1.0.0', file version '5.1.0.0' and informational version '5.1.0' is running...
[] 2019-07-09T16:34:28.8018850Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: === Token Acquisition started:
[] CacheType: Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache (0 items)
[] Authentication Target: User
[] , Authority Host: login.microsoftonline.com
[] 2019-07-09T16:34:28.8020740Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Loading from cache.
[] 2019-07-09T16:34:28.8023160Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Deserialized 0 items to token cache.
[] 2019-07-09T16:34:28.8024200Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:28.8025150Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:28.8025930Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:28.8029410Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:28.8030380Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:28.8031300Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:28.8032040Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:28.8035010Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:28.8035960Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:28.8036850Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:28.8037700Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:28.8040070Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:28.8041000Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:28.8041820Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:28.8042430Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:28.8044570Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:28.8045480Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:28.8046500Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:28.8047230Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:28.8049250Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:28.8050170Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:28.8051060Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:28.8051680Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:28.8054130Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:28.8055030Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Either a token was not found or an exception was thrown.
[] 2019-07-09T16:34:28.8055690Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Is Android Broker use configured via PlatformParamters? True
[] 2019-07-09T16:34:28.8109280Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: BrokerProxy: Found the Authenticator on the device
[] 2019-07-09T16:34:28.8140390Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: BrokerProxy: CheckAccount. Getting authenticator types 41
[] 2019-07-09T16:34:28.8150870Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: BrokerProxy: Getting the account list 0
[] 2019-07-09T16:34:28.8152130Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: BrokerProxy: Package name is com.microsoft.windowsintune.companyportal
[] 2019-07-09T16:34:28.8160110Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: BrokerProxy: Broker supports adding accounts
[] 2019-07-09T16:34:28.8161140Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Can invoke broker? True
[] 2019-07-09T16:34:28.8162360Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Trying to acquire a token using the broker...
[] 2019-07-09T16:34:28.8197920Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: BrokerProxy: CheckAccount. Getting authenticator types 41
[] 2019-07-09T16:34:28.8208360Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: BrokerProxy: Getting the account list 0
[] 2019-07-09T16:34:28.8209950Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: BrokerProxy: Package name is com.microsoft.windowsintune.companyportal
[] 2019-07-09T16:34:28.8217190Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: BrokerProxy: Broker supports adding accounts
[] 2019-07-09T16:34:28.8218720Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: It switched to broker for context
[] 2019-07-09T16:34:28.8219570Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: User is not specified for background token request
[] 2019-07-09T16:34:28.8220370Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Token is not returned from backgroud call
[] 2019-07-09T16:34:28.8221000Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Launch activity for Authenticator
[] 2019-07-09T16:34:28.8222060Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Starting Authentication Activity
[] 2019-07-09T16:34:28.8222690Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Initial request to authenticator
[] 2019-07-09T16:34:28.8237400Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: BrokerProxy: Broker Account Name:
[] 2019-07-09T16:34:28.8239920Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: callerActivity.MainLooper returned: Looper (main, tid 2) {a0e0867}
[] 2019-07-09T16:34:28.8524770Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: BrokerProxy: Intent created from BundleResult is not null.
[] 2019-07-09T16:34:28.8528580Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Calling activity pid:1491 tid:1580uid:10448
[View] requestLayout() improperly called by md51558244f76c53b6aeda52c8a337f2c37.ScrollViewContainer{876f997 V.E...... ......ID 0,0-1080,3287} during layout: running second layout pass
[ViewRootImpl@f76ccbe[MainActivity]] requestLayout is already in process
[ViewRootImpl@f76ccbe[MainActivity]] requestLayoutDuringLayout is already in process
[InputMethodManager] HSIFW - flag : 0 Pid : 1491
[ViewRootImpl@f76ccbe[MainActivity]] MSG_WINDOW_FOCUS_CHANGED 0 1
[InputMethodManager] prepareNavigationBarInfo() DecorView@2ec737f[MainActivity]
[InputMethodManager] getNavigationBarColor() -855310
[View] requestLayout() improperly called by md58432a647068b097f9637064b8985a5e0.NavigationPageRenderer{ffc4141 V.E...... ......ID 0,0-1080,2031 #1} during second layout pass: posting in next frame
[InputTransport] Input channel destroyed: fd=90
[OpenGLRenderer] eglDestroySurface = 0x7754a73b00, 0x77502ae000
[ViewRootImpl@f76ccbe[MainActivity]] Relayout returned: old=[0,0][1080,2220] new=[0,0][1080,2220] result=0x5 surface={valid=false 0} changed=true
[ViewRootImpl@f76ccbe[MainActivity]] setWindowStopped(true) old=false
[ViewRootImpl@f76ccbe[MainActivity]] Surface release. android.view.WindowManagerGlobal.setStoppedState:669 android.app.Activity.performStop:7647 android.app.ActivityThread.callActivityOnStop:4373 android.app.ActivityThread.performStopActivityInner:4351 android.app.ActivityThread.handleStopActivity:4426 android.app.servertransaction.StopActivityItem.execute:41 android.app.servertransaction.TransactionExecutor.executeLifecycleState:145 android.app.servertransaction.TransactionExecutor.execute:70
[ViewRootImpl@f76ccbe[MainActivity]] Relayout returned: old=[0,0][1080,2220] new=[0,0][1080,2220] result=0x1 surface={valid=false 0} changed=false
[] 2019-07-09T16:34:33.0102550Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Received Activity Result(2004)
[ViewRootImpl@f76ccbe[MainActivity]] setWindowStopped(false) old=true
[] 2019-07-09T16:34:33.0115100Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Storing token in the cache...
[] 2019-07-09T16:34:33.0117640Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Deserialized 0 items to token cache.
[] 2019-07-09T16:34:33.0118780Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: An item was stored in the cache
[] 2019-07-09T16:34:33.0124030Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Client Info is missing. Skipping MSAL refresh token cache write
[] 2019-07-09T16:34:33.0125080Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Serializing token cache with 1 items.
[] 2019-07-09T16:34:33.0142000Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: === Token Acquisition finished successfully. An access token was returned: Expiration Time: 7/9/2019 5:34:32 PM +00:00
[ViewRootImpl@f76ccbe[MainActivity]] setWindowStopped(false) old=false
[ViewRootImpl@f76ccbe[MainActivity]] Relayout returned: old=[0,0][1080,2220] new=[0,0][1080,2220] result=0x7 surface={valid=true 512446095360} changed=true
[OpenGLRenderer] eglCreateWindowSurface = 0x774fb6e800, 0x77502ae010
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] AuthenticateEndpoint $$INFO: Azure Auth$$ Logs: [Verbose] 2019-07-09T16:34:28.8015120Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: BrokerProxy: Getting the Android context
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:28.8017910Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: ADAL PCL.Android with assembly version '5.1.0.0', file version '5.1.0.0' and informational version '5.1.0' is running...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information:pii] 2019-07-09T16:34:28.8019410Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: === Token Acquisition started:
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] Authority: https://login.microsoftonline.com/eygs.onmicrosoft.com/
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] Resource: https://graph.microsoft.com
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] ClientId: 852e8054-ba53-4814-ae1c-6901166d0a06
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] CacheType: Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache (0 items)
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] Authentication Target: User
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService]
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:28.8021280Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Loading from cache.
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:28.8023720Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Deserialized 0 items to token cache.
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:28.8024710Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Looking up cache for a token...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:28.8025680Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: No matching token was found in the cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:28.8026320Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:28.8030000Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:28.8030970Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Looking up cache for a token...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:28.8031810Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: No matching token was found in the cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:28.8033050Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:28.8035580Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:28.8036530Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Looking up cache for a token...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:28.8037460Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: No matching token was found in the cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:28.8038080Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:28.8040630Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:28.8041510Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Looking up cache for a token...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:28.8042210Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: No matching token was found in the cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:28.8042920Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:28.8045100Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:28.8045890Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Looking up cache for a token...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:28.8046990Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: No matching token was found in the cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:28.8047610Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:28.8049810Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:28.8050760Z: 46fa3fb9-5157-4333-8a21-5845f5cd4a9c - AdalLoggerBase.cs: Looking up cache for a token
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] AuthenticateEndpoint $$INFO: Azure Auth$$ Log: Access Token: eyJ0eXA......u9VzziUv-fKAGbCeisQvbvLcYCcBsoD8sYJ9URzzoE1_2Kx9wrMVYZqrreQfjRESgC4Q
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService]
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] Access Token Type: Bearer
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService]
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] Expires On: 7/9/2019 5:34:32 PM +00:00
[System.out] (HTTPLog)-Static: isSBSettingEnabled false
[System.out] (HTTPLog)-Static: isSBSettingEnabled false
[ViewRootImpl@f76ccbe[MainActivity]] MSG_WINDOW_FOCUS_CHANGED 1 1
[InputMethodManager] prepareNavigationBarInfo() DecorView@2ec737f[MainActivity]
[InputMethodManager] getNavigationBarColor() -855310
[InputMethodManager] prepareNavigationBarInfo() DecorView@2ec737f[MainActivity]
[InputMethodManager] getNavigationBarColor() -855310
[InputMethodManager] Starting input: tba=com.eygsl.atf.xformsref ic=null mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
[InputMethodManager] startInputInner - Id : 0
[InputMethodManager] startInputInner - mService.startInputOrWindowGainedFocus
[InputTransport] Input channel constructed: fd=91
[l.atf.xformsre] Explicit concurrent copying GC freed 50284(2MB) AllocSpace objects, 17(516KB) LOS objects, 66% free, 3MB/9MB, paused 68us total 24.916ms
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] SetupHttpClient Before Acquiring Silent Token values
[] 2019-07-09T16:34:34.8172830Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: BrokerProxy: Getting the Android context
[] 2019-07-09T16:34:34.8177660Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: ADAL PCL.Android with assembly version '5.1.0.0', file version '5.1.0.0' and informational version '5.1.0' is running...
[] 2019-07-09T16:34:34.8179460Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: === Token Acquisition started:
[] CacheType: Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache (1 items)
[] Authentication Target: User
[] , Authority Host: login.microsoftonline.com
[] 2019-07-09T16:34:34.8181500Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Loading from cache.
[] 2019-07-09T16:34:34.8195170Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Deserialized 1 items to token cache.
[] 2019-07-09T16:34:34.8196600Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:34.8197980Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: A matching entry was found in the cache
[] 2019-07-09T16:34:34.8198870Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Cross Tenant refresh token was found in the cache
[] 2019-07-09T16:34:34.8199630Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: An old item was removed from the cache
[] 2019-07-09T16:34:34.8200360Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:34.8201040Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:34.8201660Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:34.8206340Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:34.8207270Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:34.8208100Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:34.8208720Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:34.8210990Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:34.8211840Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:34.8212550Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:34.8213170Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:34.8215550Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:34.8216370Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:34.8217080Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:34.8217690Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:34.8219790Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:34.8220630Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:34.8221340Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:34.8221960Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:34.8224050Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:34.8224990Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Serializing token cache with 0 items.
[] 2019-07-09T16:34:34.8232820Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Either a token was not found or an exception was thrown.
[] 2019-07-09T16:34:34.8234080Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Is Android Broker use configured via PlatformParamters? False
[] 2019-07-09T16:34:34.8234740Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Can invoke broker? False
[] 2019-07-09T16:34:34.8235360Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Cannot invoke the broker directly, may require install ...
[] 2019-07-09T16:34:34.8236000Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Check and AcquireToken using broker
[] 2019-07-09T16:34:34.8236600Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Broker invocation is NOT required
[] 2019-07-09T16:34:34.8238030Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: No token matching arguments found in the cache
[] 2019-07-09T16:34:34.8262320Z: 8d609eb6-db61-4755-8593-fd8241efb39d - AdalLoggerBase.cs: Exception type: Microsoft.IdentityModel.Clients.ActiveDirectory.AdalSilentTokenAcquisitionException
[] , ErrorCode: failed_to_acquire_token_silently
[]
[] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenSilentHandler.SendTokenRequestAsync () [0x00022] in <59ab81ad5c434680a79a77c359b9442d>:0
[] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenHandlerBase.CheckAndAcquireTokenUsingBrokerAsync () [0x000df] in <59ab81ad5c434680a79a77c359b9442d>:0
[] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenHandlerBase.RunAsync () [0x004db] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Error] SetupHttpClient AdalSilientTokenAquisitionException failed_to_acquire_token_silentlyMicrosoft.IdentityModel.Clients.ActiveDirectory.AdalSilentTokenAcquisitionException: Failed to acquire token silently as no token was found in the cache. Call method AcquireToken
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenSilentHandler.SendTokenRequestAsync () [0x00022] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenHandlerBase.CheckAndAcquireTokenUsingBrokerAsync () [0x000df] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.Flows.AcquireTokenHandlerBase.RunAsync () [0x0070e] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentCommonAsync (System.String resource, Microsoft.IdentityModel.Clients.ActiveDirectory.Internal.ClientCreds.ClientKey clientKey, Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier userId, Microsoft.IdentityModel.Clients.ActiveDirectory.IPlatformParameters parameters) [0x000cb] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync (System.String resource, System.String clientId, Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier userId) [0x00084] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenSilentAsync (System.String resource, System.String clientId) [0x0007d] in <59ab81ad5c434680a79a77c359b9442d>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] at EY.Mobile.Lib.ADAL.AzureAuthenticatorService.AcquireTokenSilentAsync (EY.Mobile.Lib.ADAL.Endpoint endpoint, System.String memberName, System.Int32 lineNumber) [0x000fe] in <4bae2b5195584b8ea48010c33feccf75>:0
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] ErrorCode: failed_to_acquire_token_silently
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] AcquireTokenSilentAsync Before Acquiring Token values
[] 2019-07-09T16:34:34.8322850Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: BrokerProxy: Getting the Android context
[] 2019-07-09T16:34:34.8325940Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: ADAL PCL.Android with assembly version '5.1.0.0', file version '5.1.0.0' and informational version '5.1.0' is running...
[] 2019-07-09T16:34:34.8327460Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: === Token Acquisition started:
[] CacheType: Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache (0 items)
[] Authentication Target: User
[] , Authority Host: login.microsoftonline.com
[] 2019-07-09T16:34:34.8329410Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Loading from cache.
[] 2019-07-09T16:34:34.8331750Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Deserialized 0 items to token cache.
[] 2019-07-09T16:34:34.8333390Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:34.8334380Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:34.8335150Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:34.8338380Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:34.8339420Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:34.8340160Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:34.8340900Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:34.8343150Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:34.8344110Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:34.8345060Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:34.8345710Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:34.8347980Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:34.8349050Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:34.8349790Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:34.8350550Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:34.8352670Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:34.8353670Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:34.8354370Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:34.8355110Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:34.8357190Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:34.8358170Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Looking up cache for a token...
[] 2019-07-09T16:34:34.8358890Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: No matching token was found in the cache
[] 2019-07-09T16:34:34.8359650Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[] 2019-07-09T16:34:34.8361930Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[] 2019-07-09T16:34:34.8362740Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Either a token was not found or an exception was thrown.
[] 2019-07-09T16:34:34.8363580Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Is Android Broker use configured via PlatformParamters? True
[] 2019-07-09T16:34:34.8425910Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: BrokerProxy: Found the Authenticator on the device
[] 2019-07-09T16:34:34.8455830Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: BrokerProxy: CheckAccount. Getting authenticator types 41
[] 2019-07-09T16:34:34.8470840Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: BrokerProxy: Getting the account list 0
[] 2019-07-09T16:34:34.8472070Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: BrokerProxy: Package name is com.microsoft.windowsintune.companyportal
[] 2019-07-09T16:34:34.8482430Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: BrokerProxy: Broker supports adding accounts
[] 2019-07-09T16:34:34.8483590Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Can invoke broker? True
[] 2019-07-09T16:34:34.8484240Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Trying to acquire a token using the broker...
[] 2019-07-09T16:34:34.8524350Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: BrokerProxy: CheckAccount. Getting authenticator types 41
[] 2019-07-09T16:34:34.8536250Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: BrokerProxy: Getting the account list 0
[] 2019-07-09T16:34:34.8537480Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: BrokerProxy: Package name is com.microsoft.windowsintune.companyportal
[] 2019-07-09T16:34:34.8547560Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: BrokerProxy: Broker supports adding accounts
[] 2019-07-09T16:34:34.8548910Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: It switched to broker for context
[] 2019-07-09T16:34:34.8549640Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: User is not specified for background token request
[] 2019-07-09T16:34:34.8550290Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Token is not returned from backgroud call
[] 2019-07-09T16:34:34.8551190Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Launch activity for Authenticator
[] 2019-07-09T16:34:34.8551780Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Starting Authentication Activity
[] 2019-07-09T16:34:34.8552360Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Initial request to authenticator
[] 2019-07-09T16:34:34.8568180Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: BrokerProxy: Broker Account Name:
[] 2019-07-09T16:34:34.8570080Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: callerActivity.MainLooper returned: Looper (main, tid 2) {a0e0867}
[] 2019-07-09T16:34:34.8988500Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: BrokerProxy: Intent created from BundleResult is not null.
[] 2019-07-09T16:34:34.8991670Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Calling activity pid:1491 tid:1577uid:10448
[l.atf.xformsre] Explicit concurrent copying GC freed 12922(659KB) AllocSpace objects, 2(104KB) LOS objects, 65% free, 3MB/9MB, paused 65us total 23.354ms
[InputMethodManager] HSIFW - flag : 0 Pid : 1491
[ViewRootImpl@f76ccbe[MainActivity]] MSG_WINDOW_FOCUS_CHANGED 0 1
[InputMethodManager] prepareNavigationBarInfo() DecorView@2ec737f[MainActivity]
[InputMethodManager] getNavigationBarColor() -855310
[OpenGLRenderer] eglDestroySurface = 0x774fb6e800, 0x77502ae000
[ViewRootImpl@f76ccbe[MainActivity]] Relayout returned: old=[0,0][1080,2220] new=[0,0][1080,2220] result=0x5 surface={valid=false 0} changed=true
[InputTransport] Input channel destroyed: fd=91
[ViewRootImpl@f76ccbe[MainActivity]] setWindowStopped(true) old=false
[ViewRootImpl@f76ccbe[MainActivity]] Surface release. android.view.WindowManagerGlobal.setStoppedState:669 android.app.Activity.performStop:7647 android.app.ActivityThread.callActivityOnStop:4373 android.app.ActivityThread.performStopActivityInner:4351 android.app.ActivityThread.handleStopActivity:4426 android.app.servertransaction.StopActivityItem.execute:41 android.app.servertransaction.TransactionExecutor.executeLifecycleState:145 android.app.servertransaction.TransactionExecutor.execute:70
[ViewRootImpl@f76ccbe[MainActivity]] Relayout returned: old=[0,0][1080,2220] new=[0,0][1080,2220] result=0x1 surface={valid=false 0} changed=false
[] 2019-07-09T16:34:38.7579100Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Received Activity Result(2004)
[ViewRootImpl@f76ccbe[MainActivity]] setWindowStopped(false) old=true
[] 2019-07-09T16:34:38.7591430Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Storing token in the cache...
[] 2019-07-09T16:34:38.7594990Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Deserialized 0 items to token cache.
[] 2019-07-09T16:34:38.7596000Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: An item was stored in the cache
[] 2019-07-09T16:34:38.7600990Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Client Info is missing. Skipping MSAL refresh token cache write
[] 2019-07-09T16:34:38.7602750Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Serializing token cache with 1 items.
[] 2019-07-09T16:34:38.7618820Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: === Token Acquisition finished successfully. An access token was returned: Expiration Time: 7/9/2019 5:34:38 PM +00:00
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] AuthenticateEndpoint $$INFO: Azure Auth$$ Logs: [Verbose] 2019-07-09T16:34:34.8323680Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: BrokerProxy: Getting the Android context
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:34.8326550Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: ADAL PCL.Android with assembly version '5.1.0.0', file version '5.1.0.0' and informational version '5.1.0' is running...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information:pii] 2019-07-09T16:34:34.8328030Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: === Token Acquisition started:
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] Authority: https://login.microsoftonline.com/eygs.onmicrosoft.com/
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] Resource: https://graph.microsoft.com
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] ClientId: 852e8054-ba53-4814-ae1c-6901166d0a06
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] CacheType: Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache (0 items)
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] Authentication Target: User
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService]
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:34.8329950Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Loading from cache.
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:34.8332890Z: 00000000-0000-0000-0000-000000000000 - AdalLoggerBase.cs: Deserialized 0 items to token cache.
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:34.8333840Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Looking up cache for a token...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:34.8334900Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: No matching token was found in the cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:34.8335520Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:34.8339030Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:34.8339830Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Looking up cache for a token...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:34.8340660Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: No matching token was found in the cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:34.8341280Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:34.8343710Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:34.8344730Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Looking up cache for a token...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:34.8345450Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: No matching token was found in the cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:34.8346080Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:34.8348670Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:34.8349460Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Looking up cache for a token...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:34.8350310Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: No matching token was found in the cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:34.8350930Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:34.8353280Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:34.8354050Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Looking up cache for a token...
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:34.8354860Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: No matching token was found in the cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:34.8355480Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Checking MSAL cache for user token cache
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Information] 2019-07-09T16:34:34.8357810Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: A match was found in the MSAL cache ? False
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] [Verbose] 2019-07-09T16:34:34.8358560Z: 0350f19f-bd8f-41de-b289-079255d79c88 - AdalLoggerBase.cs: Looking up cache for a token
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService]
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] Access Token Type: Bearer
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService]
[EY.Mobile.Lib.ADAL.AzureAuthenticatorService] Expires On: 7/9/2019 5:34:38 PM +00:00

@ghost
Copy link
Author

ghost commented Jul 9, 2019

I would note that if I call the token cache to see if there is a cache token, there is one:
var authContext = new AuthenticationContext(endpoint.Authority);
tokenCache = authContext.TokenCache.ReadItems();

cache_token_screenshot

@jennyf19 jennyf19 self-assigned this Jul 9, 2019
@ghost
Copy link
Author

ghost commented Jul 12, 2019

The issue is with the authority that is used. If I use a string version of the authority, ADAL fails in the LoadFromCacheCommon method when it tries to compare the cache key authority to the one passed in. If I switch the authority to the guid version, it works. We will switch our configuration over to the GUID version.

@ghost ghost closed this as completed Jul 12, 2019
@jennyf19
Copy link
Contributor

@biozal thanks

@jennyf19
Copy link
Contributor

@biozal Since you found a work-around, I've updated our wiki w/your findings and mitigation. Feel free to edit and revise as you see fit. Thanks again for brining this to our attention.

This issue was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

1 participant