Skip to content

Instantly share code, notes, and snippets.

@Scorpiion
Created May 16, 2012 03:14
Show Gist options
  • Save Scorpiion/2707032 to your computer and use it in GitHub Desktop.
Save Scorpiion/2707032 to your computer and use it in GitHub Desktop.
FB.login(function(response) {
if(response.authResponse) {
FB.api('/me', function(response) {
console.log("Name: " + response.name);
console.log("Name: " + response.id);
});
} else {
console.log("Not logged in... Error");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment