Skip to content

Instantly share code, notes, and snippets.

@lune-sta
Last active March 6, 2017 14:50
Show Gist options
  • Save lune-sta/6cd8d3d3f2c96558ce35c6351f2704b4 to your computer and use it in GitHub Desktop.
Save lune-sta/6cd8d3d3f2c96558ce35c6351f2704b4 to your computer and use it in GitHub Desktop.
require 'twitter'
client = Twitter::REST::Client.new do |config|
config.consumer_key = "YOUR_CONSUMER_KEY"
config.consumer_secret = "YOUR_CONSUMER_SECRET"
config.access_token = "YOUR_ACCESS_TOKEN"
config.access_token_secret = "YOUR_ACCESS_SECRET"
end
n = STDIN.gets
client.update("@sekimiya #{n}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment