/**
* Logout From Facebook
*/
public static void callFacebookLogout(Context context) {
Session session = Session.getActiveSession();
if (session != null) {
if (!session.isClosed()) {
session.closeAndClearTokenInformation();
//clear your preferences if saved
}
} else {
session = new Session(context);
Session.setActiveSession(session);
session.closeAndClearTokenInformation();
//clear your preferences if saved
}
}
[Android] Facebook SDK Programmatically Logout
How to programmatically logout from facebook sdk 3.0 without using facebook login/logout button?
訂閱:
張貼留言
(
Atom
)
沒有留言 :
張貼留言