Skip to content

Instantly share code, notes, and snippets.

@evnm
Created January 11, 2011 08:40
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 evnm/774205 to your computer and use it in GitHub Desktop.
Save evnm/774205 to your computer and use it in GitHub Desktop.
dropbox.getAccessToken(email, password, function (err) {
if (err) return console.error('Error: ' + err)
dropbox.getAccountInfo(function (err, data) {
if (err) return console.error('Error: ' + err)
console.log(data.display_name + ', ' + data.email)
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment