Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 976 Bytes

README.md

File metadata and controls

30 lines (26 loc) · 976 Bytes

TwitterApp

TwitterApp is a very basic Rails 3 application that demonstrates how to use the Sign in with Twitter workflow with version 1.x of the twitter gem (which has removed built-in OAuth support).

Installation

git clone git://github.com/jnunemaker/twitter-app.git
cd twitter-app
bundle install

Usage

Using TwitterApp requires you to register an app with Twitter to obtain OAuth credentials. Once you obtain credentials, substitute your consumer key and secret into the command below.

CONSUMER_KEY=abc CONSUMER_SECRET=123 rails server

OmniAuth

There is an omniauth branch that demonstrates integration with the omniauth gem instead of the oauth gem.