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.
Try:
adapter.signOut(getApplicationContext(), Provider.FACEBOOK.toString());