Created
December 4, 2012 00:14
-
-
Save kimihito/4199283 to your computer and use it in GitHub Desktop.
Get Twitter profile image URL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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