Skip to content

Instantly share code, notes, and snippets.

@StavrosKen
Last active January 3, 2016 11:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StavrosKen/8453722 to your computer and use it in GitHub Desktop.
Save StavrosKen/8453722 to your computer and use it in GitHub Desktop.
FacebookLoginJavascript
FB.login(function (response) {
if (response.authResponse) {
//Place code here to be executed after the login is successful!
} else {
console.log('User cancelled login or did not fully authorize.');
}
}, { scope: 'email,user_photos,user_videos,publish_stream' });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment