Skip to content

Instantly share code, notes, and snippets.

@fumin
Created October 23, 2012 21:40
Show Gist options
  • Save fumin/3941784 to your computer and use it in GitHub Desktop.
Save fumin/3941784 to your computer and use it in GitHub Desktop.
how to use RC::Tumblr
c = RC::Tumblr.new
c.authorize_url! # https://api.tumblr.com/oauth/authorize?oauth_token=I8QcLz0oqCTS47D9cHqjn9QfHkcmZzeMJNZEwkpCEwOdIctD2Y
# throw the above link into browser and login
# Eventually you'll end up in http://pic-collage.com/?oauth_token=I8QcLz0oqCTS47D9cHqjn9QfHkcmZzeMJNZEwkpCEwOdIctD2Y&oauth_verifier=nSAGgIsnwFoNChxIWAjYmFWKjMDWTG0UmOOr4VGpRcYsSDY7Z3
c.authorize! :oauth_verifier => 'nSAGgIsnwFoNChxIWAjYmFWKjMDWTG0UmOOr4VGpRcYsSDY7Z3'
# You are ready now :)
pp c.user_info
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment