Skip to content

Instantly share code, notes, and snippets.

@srockstyle
Created March 12, 2013 22:46
Show Gist options
  • Save srockstyle/5147801 to your computer and use it in GitHub Desktop.
Save srockstyle/5147801 to your computer and use it in GitHub Desktop.
TwitterのGemを使ってTwitterにRubyから投稿する方法。
# -*- coding: utf-8 -*-
require "twitter"
## Twitterのもろもろの情報。
Twitter.configure do |cnf|
cnf.consumer_key = "Consumer key"
cnf.consumer_secret = "Consumer secret"
cnf.oauth_token = "OAuth token"
cnf.oauth_token_secret = "OAuth token secret"
end
## Hellow Worldと投稿される。
Twitter.update("Hello World!!!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment