Skip to content

Instantly share code, notes, and snippets.

@tbaba
Created January 7, 2012 12:44
Show Gist options
  • Save tbaba/1574666 to your computer and use it in GitHub Desktop.
Save tbaba/1574666 to your computer and use it in GitHub Desktop.
Post to Twitter with OmniAuth
gem 'omniauth'
gem 'omniauth-twitter'
Rails.application.config.middleware.use OmniAuth::Builder do
provider :twitter, YOUR_CONSUMER_KEY, YOUR_CONSUMER_SECRET
end
Hoge::Application.routes.draw do
match '/auth/:provider/callback' => 'sessions#callback'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment