When users SignOut of my Firebase app, why doesn't it also SignOut from the auth provider, say Google?

后端 未结 2 539
梦谈多话
梦谈多话 2021-01-13 04:00

I am using Google as the auth provider to sign in with my app. My code calls the Firebase sign out method which redirects to the login page, but when user again clicks on th

2条回答
  •  迷失自我
    2021-01-13 04:35

    var provider = new Firebase.auth.GoogleAuthProvider();
      provider.setCustomParameters({
        prompt: 'select_account'
      });
    

提交回复
热议问题