Change and see Google account when login

Taken from: oauth 2.0 - How to force account selection when using social provider login in Lock - Stack Overflow

When you use a social login provider the automatic sign-in is handled by the provider in question. Disabling the sso option and rememberLastLogin will mean Auth0 will not try to login you automatically or provide any information about who login for the last time.

When you login with Google the first time, Google created a session and next requests will automatically use that session by default.

However, Google supports an option that will allow you to choose the behavior you want, in this case it seems you want for the user to be able to select another account, which can be accomplished by passing the following option prompt=select_account (see other options here) in the Google login request.

You can achieve this in Auth0 Lock by providing this option in the auth.params object. Updated example below:

var options = {
    rememberLastLogin: false,
    auth: {
        sso: false,
        redirect: false,
        params: { prompt: 'select_account' }
    }
};

var lock = new Auth0Lock('clientId', '[tenant].auth0.com', options);