Skip to content

Instantly share code, notes, and snippets.

@atton
Created June 7, 2012 10:23
Show Gist options
  • Save atton/2888061 to your computer and use it in GitHub Desktop.
Save atton/2888061 to your computer and use it in GitHub Desktop.
ruby bot
# -*- coding: utf-8 -*-
require 'twitter'
Twitter.configure do |config|
config.consumer_key = gets.chomp
config.consumer_secret = gets.chomp
config.oauth_token = gets.chomp
config.oauth_token_secret = gets.chomp
end
Twitter.update("なんかいれて")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment