Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Radagaisus
Last active August 29, 2015 13:56
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 Radagaisus/9207083 to your computer and use it in GitHub Desktop.
Save Radagaisus/9207083 to your computer and use it in GitHub Desktop.
How to get user information from Captain Up
// Used as a wrapper to make sure Captain Up has loaded on the page
captain.up(function() {
// `captain.player` holds all the information about the users, including anonymous users information
user_details = captain.player
// Do whatever you want with the data, maybe send it to your server side?
$.ajax({type: 'POST', url: 'http://mysite.com/users/', data: captain.player})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment