Sometimes, when a user logs into a site with Google OAuth 2.0, they choose the wrong login account. This is usually not a problem if a user has more than one account registered in a browser, Google will automatically display the user selection screen: 
But if the user has only one account and logs in, this screen is skipped. Instead, I need the Google login bar to always display so that I can make sure that the user has the opportunity to try entering the correct account. I tried using approval_prompt = "force" , but this forces me to accept permissions, and not just show the login page. 
How to make Google OAuth 2.0 always show the login screen?
(and never automatically skip it)
source share