Skip to content

Instantly share code, notes, and snippets.

@lamp
Created August 28, 2014 21:39
Show Gist options
  • Select an option

  • Save lamp/10e217c5aa6560c6efaa to your computer and use it in GitHub Desktop.

Select an option

Save lamp/10e217c5aa6560c6efaa to your computer and use it in GitHub Desktop.
oauth.get('https://api.twitter.com/1.1/account/verify_credentials.json?skip_status=true', function(data) {
var userParam = JSON.parse(data.text);
localStorage.uid = userParam.id;
localStorage.loggedIn = true;
debugger;
// window.location="show_list.html";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment