Skip to content Skip to sidebar Skip to footer

How To Logout Parseuser Linked With Twitter In Android

I loggedIn in parse using ParseTwitterUtils: ParseTwitterUtils.logIn(this, new LogInCallback() { @Override public void done(ParseUser user, ParseException err)

Solution 1:

I was experiencing this issue because I have enabled Parse local datastore in application class

Parse.enableLocalDatastore(this);

I just disabled the Parse local datastore and Twitter login is working perfectly.

Post a Comment for "How To Logout Parseuser Linked With Twitter In Android"