How to properly sign out of Facebook on Android with Firebase?

前端 未结 1 496
花落未央
花落未央 2021-02-04 09:58

So I figured out how to properly signout with Google. Cool. Now, what about Facebook?

When I get an error signing in to Facebook, such as an error indicating I already h

相关标签:
1条回答
  • 2021-02-04 11:02

    I had a similar problem and got it solved using both the firebase Auth instance and the facebook LoginManager instance

    FirebaseAuth.getInstance().signOut();
    LoginManager.getInstance().logOut();
    

    My Question

    0 讨论(0)
提交回复
热议问题