Skip to content

Instantly share code, notes, and snippets.

@davidbauer
Created February 3, 2013 13:17
Show Gist options
  • Save davidbauer/4701748 to your computer and use it in GitHub Desktop.
Save davidbauer/4701748 to your computer and use it in GitHub Desktop.
get authenticating user's name for further usage
// test to get logged in user's name for further use
$.getJSON("http://tlinkstimeline.appspot.com/loggedinuser?callback=?", function(loggedinuser){
if (loggedinuser) {
var thename = loggedinuser;
console.log("hello " + thename);
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment