Skip to content

Instantly share code, notes, and snippets.

@StavrosKen
Created January 16, 2014 12:07
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/8453855 to your computer and use it in GitHub Desktop.
Save StavrosKen/8453855 to your computer and use it in GitHub Desktop.
<div id="Info"></div>
<script>
function getUserInfo() {
FB.api('/me', function (response) {
document.getElementById("Info").innerHTML = "Hello" + response.name + "<br />Link:" + response.link;
userID = response.id;
});
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment