Hi I'm using Facebook sdk3.0 for Android. How can I check whether a user is logged in or not?
Currently I'm using this:
public static boolean isUserLoggedInWithFacebook() {
Session session = Session.getActiveSession();
if(session != null && session.isOpened())
return true;
return false;
}
But it sometimes gives false while user is still logged in.