An open API service indexing awesome lists of open source software.

https://github.com/jnunemaker/twitter-app

example rails 3 application that uses oauth
https://github.com/jnunemaker/twitter-app

Last synced: about 1 year ago
JSON representation

example rails 3 application that uses oauth

Awesome Lists containing this project

README

          

TwitterApp
==========
TwitterApp is a very basic Rails 3 application that demonstrates how to use the
[Sign in with Twitter](http://dev.twitter.com/pages/sign_in_with_twitter)
workflow with version 1.x of the [twitter
gem](https://github.com/jnunemaker/twitter/) (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](http://dev.twitter.com/apps) 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
--------
If you would like to see how to use the [omniauth
gem](https://github.com/intridea/omniauth) for authentication, Erik
Michaels-Ober maintains [a simple Rails
application](https://github.com/sferik/sign-in-with-twitter) that demonstrates
how to do so.