How do I implement an OpenID server in Rails? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T22:50:55Zhttp://stackoverflow.com/feeds/question/45277http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/45277/how-do-i-implement-an-openid-server-in-rails2How do I implement an OpenID server in Rails?jonblock2008-09-05T05:33:06Z2008-09-19T07:46:52Z
<p>I see a similar question <a href="http://beta.stackoverflow.com/questions/28588/how-do-you-set-up-an-openid-provider-server-in-ubuntu" rel="nofollow">for Ubuntu</a>, but I'm interested in hosting my own OpenID provider through my Rails-based site that already has an identity and authentication system in place.</p>
<p>Note that I'm not looking for the delegate method to <a href="http://beta.stackoverflow.com/questions/4661/can-you-apply-more-than-one-openid-to-a-stackoverflow-account#4777" rel="nofollow">use the site as an OpenID</a>.</p>
<p>What's the best way to do this properly?</p>
http://stackoverflow.com/questions/45277/how-do-i-implement-an-openid-server-in-rails/45375#453753Answer by John for How do I implement an OpenID server in Rails?John2008-09-05T07:20:45Z2008-09-05T07:20:45Z<p>This "<a href="http://www.danwebb.net/2007/2/27/the-no-shit-guide-to-supporting-openid-in-your-applications" rel="nofollow">No Shit Guide To Supporting OpenID In Your Applications</a>"
seems to be a step-by-step tutorial for what you want to do.</p>
http://stackoverflow.com/questions/45277/how-do-i-implement-an-openid-server-in-rails/45618#456182Answer by dbr for How do I implement an OpenID server in Rails?dbr2008-09-05T12:10:57Z2008-09-05T12:15:58Z<p><a href="http://railscasts.com/episodes/68-openid-authentication" rel="nofollow">Railscasts episode 68 OpenID authentication</a> describes how to do exactly this. It's about a year old, so you may have to do some stuff differently. I'd also strongly for either an updated or newer OpenID plugin (the link for the one in the video is labeled "outdated").</p>
<p>Err, wait, that is to support OpenID authentication in a Rails application you are writing, <em>not</em> to have run an OpenID endpoint in rails.. <a href="http://jystewart.net/process/2007/10/a-ruby-on-rails-openid-server/" rel="nofollow">Here</a> is a guide to implimenting an OpenID server/endpoint in Rails pretty-much form scratch.. <code>gem install openid-server</code> might be easier, but you'll learn more implementing it yourself, and the code is pretty simple.</p>
http://stackoverflow.com/questions/45277/how-do-i-implement-an-openid-server-in-rails/86659#866590Answer by keturn for How do I implement an OpenID server in Rails?keturn2008-09-17T19:25:48Z2008-09-19T07:46:52Z<p>This reminds me that <a href="http://trac.openidenabled.com/trac/ticket/267" rel="nofollow">the overview docs for ruby-openid server are still missing</a>. But you can see <a href="http://openidenabled.com/files/ruby-openid/repos/2.x.x/examples/rails_openid/app/controllers/server_controller.rb" rel="nofollow">the example</a>, and until the docs are ported over, see the <a href="http://openidenabled.com/files/python-openid/docs/2.2.1/openid.server.server-module.html" rel="nofollow">docs for the python implementation</a> which follows the same object model.</p>