You are here: Browse Railsplugins Restful Open Id Authentication
A Ruby on Rails plugin for OpenID authentication and profile exchange
Developed by EastMedia (http://www.eastmedia.com) for VeriSign Contact Matt Pelletier – matt AT eastmedia.com
Thanks to atmos for working on an extension of restful_authentication that piggy-backed the original open_id_consumer plugin. This plugin merges some of those ideas with others and merged them with the open_id_consumer plugin.
Installing this plugin allows you to extend your Rails application with OpenID authentication and profile exchange.
./script/generate open_id_authenticated USERMODEL CONTROLLERNAME
Where USERMODEL would be ‘User’ and CONTROLLERNAME would be ‘Session’ by default
You should add RESTful routes (this is also recommended in the generator output). For example, if your model is ‘User’ and your login controller is ‘Session’:
map.resources :users
map.resource :session, :collection => { :begin => :post, :complete => :get }
On the Web: http://www.openidenabled.com/ http://www.openidenabled.com/openid/simple-registration-extension/
On IRC: Freenode: #openid and ##identity
More to come
NOTE: This description has been extracted from the Plugin README and so the formatting may need updating to make browser friendly