This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void facebookLogin(){ | |
// start Facebook Login | |
Session.openActiveSession(this, true, new Session.StatusCallback() { | |
// callback when session changes state | |
@SuppressWarnings("deprecation") | |
@Override | |
public void call(Session session, SessionState state, Exception exception) { | |
if (session.isOpened()) { |
NewerOlder