integrationsocialauth

how to implement signout functionality for Facebook integration in social-auth for android


I am using social auth library for sharing and login with social media in android app. I have logged in and authorize successfully with facebook.

class SignUp extends Activity {
    SocialAuthAdapter adapter;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        adapter.authorize(SignUp.this, Provider.FACEBOOK);}

but I don't know how to signout from this.


Solution

  • Try:

    adapter.signOut(getApplicationContext(), Provider.FACEBOOK.toString());