Skip to content

Instantly share code, notes, and snippets.

@kimihito
Created December 4, 2012 00:14
Show Gist options
  • Save kimihito/4199283 to your computer and use it in GitHub Desktop.
Save kimihito/4199283 to your computer and use it in GitHub Desktop.
Get Twitter profile image URL
Twitter.configure do |config|
config.consumer_key = 'YOUR_COMSUMER_KEY'
config.consumer_secret = 'YOUR_COMSUMER_SECRET'
config.oauth_token = 'OAUTH_TOKEN'
config.oauth_token_secret = 'OAUTH_TOKEN_SERCRET'
end
image = Twitter.user.profile_image_url()
p image
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment