Reputation: 455
If in any browser, when i am logged in with single google account and try to invoke 'sign in with google' option on firebase, it is automatically logging-in to firebase with the already logged in account. It gives me no option to login with a different account. This happens only if one account is logged in browser. Multiple accounts doesn't create this problem. So, it is any way I can force users to choose accounts everytime they click 'sign in with google' button?
Upvotes: 28
Views: 12700
Reputation: 947
when you logs out call this method -
GoogleSignIn().signOut();
This is enough
Upvotes: 1
Reputation: 1324
For those initiating a Google Sign In from mobile, when instantiating your sign in object, you can simply use the revokeAccess method to force the account picker to be displayed
googleSignInClient = GoogleSignIn.getClient(this, googleSignInOptions)
googleSignInClient.revokeAccess()
Upvotes: 7
Reputation: 584
This worked for me: https://groups.google.com/forum/#!topic/firebase-talk/gxBm0WKCuIY
var provider = new firebase.auth.GoogleAuthProvider();
provider.setCustomParameters({
prompt: 'select_account'
});
Upvotes: 54
Reputation: 3800
If you're authenticating the user credential Using Google Sign-In with JavaScript, try to remove the follow line of code:
provider.addScope('https://www.googleapis.com/auth/plus.login');
After you clicked the sign in button, it will allow you to select a Google account that you want to use.
Upvotes: 1