You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can successfully log into google using this plugin, i would like to sign out and make the device available to be signed in by other others.
The first time I run this app I get the following screen
I am able to login as user 1 (myself) and do my business in the app. I decide to logout as user 1 and login as user 2. To logout of the app i've made sure to call CrossGoogleClient.Current.Logout();.
I would now like to login as user2, unfortunately the browser has remembered user1 and their account is available to sign in with. This account is cached so credentials are not needed in order to login as this user.
I would like to clear the user cache and force users to enter credentials every-time they try logging into my app.
Is this currently possible? I have done the same thing with microsoft login:
AuthenticationResultauthResult=await_pca.AcquireTokenInteractive(MicrosoftAuthConstants.Scopes)
......
.WithPrompt(Prompt.ForceLogin)//This will prevent the browser from displaying other accounts
......
.ExecuteAsync();
The text was updated successfully, but these errors were encountered:
I can successfully log into google using this plugin, i would like to sign out and make the device available to be signed in by other others.
The first time I run this app I get the following screen
I am able to login as user 1 (myself) and do my business in the app. I decide to logout as user 1 and login as user 2. To logout of the app i've made sure to call
CrossGoogleClient.Current.Logout();
.I would now like to login as user2, unfortunately the browser has remembered user1 and their account is available to sign in with. This account is cached so credentials are not needed in order to login as this user.
I would like to clear the user cache and force users to enter credentials every-time they try logging into my app.
Is this currently possible? I have done the same thing with microsoft login:
The text was updated successfully, but these errors were encountered: