当然rails3にて。 OmniAuth で簡単 Twitter 認証! を見ながらtwitter認証をしてた。 無事にOauth認証できたけど、ツイートの投稿のしかたって!? どうやら、tweetするためには、auth[‘credentials’][‘token’]とauth[‘credentials’][‘secret’] が必要らしいのでcreate_with_omniauthの部分を以下のように変更 def self.create_with_omniauth(auth) create! do |twitter_user| twitter_user.provider = auth["provider"] twitter_user.uid = auth["uid"] twitter_user.name = auth["user_info"]["name"] twitter_user.n