Skip to content

Instantly share code, notes, and snippets.

@atypical
Created October 29, 2011 22:27
Show Gist options
  • Save atypical/1325177 to your computer and use it in GitHub Desktop.
Save atypical/1325177 to your computer and use it in GitHub Desktop.
getUserInfo()
function getUserInfo(){
var tumblr = new OAuth.Tumblr({
consumerKey: 'adfasdfasdfasdfasdfas',
consumerSecret: 'adfasdfasdfasdfasdfsa'
});
function success(data)
{
Ti.API.info('User Info response text: '+data.text);
}
function failure(data)
{
Ti.API.info('Something bad happened: '+ data.text);
};
tumblr.userInfo(success, failure)
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment