vote up 7 vote down star
1

I'm thoroughly confused about current state of the art for using OpenID together with restful_authentication. The obvious google search gives several well-known pages which do not make sense taken together (considering their timestamps).

What shall I do given that I'm running Rails 2.0 (or 2.1) and I want OpenID authentication alongside usual login/password?

Thank you,

flag

8 Answers

vote up 4 vote down

Check out this Railscast on OpenId for more info. I'm not sure if/how it might work alongside restful_authentication, but might be a good resource. (I haven't watched it yet)

link|flag
Prophecy: your comment will be down-voted because anyone can suggest random search results from Google ;) – squadette Sep 15 '08 at 21:10
vote up 4 vote down

The definitive resource should be the rails wiki, although I use should advisedly because things have been changing quite fast when it comes to OpenID support.

Ryan Bates' Railscast on Openid is the best thing I've found to follow. Even though it was recorded with Rails 1.2.3, I've been able to successfully follow the tutorial with Rails 2.1.0. The only point to note is that for:

gem install ruby-openid

I installed 2.1.2, rather than the 1.1.4 used in railscast.

The OpenID plugin used is open_id_authentication, and I tested it in combination with restful_authentication from git://github.com/technoweenie/restful-authentication.git

NB: I subsequently wrote this up in a blog post.

link|flag
vote up 3 vote down

What I've done is use restful-authentication and then blend the open_id_authentication plugin into your application. It might help to setup the open_id_authentication plugin on a test app as well, so you can determine the changes you'll need to make to the users table.

link|flag
vote up 1 vote down

dr dobbs just published this

OpenID Single Sign-On

link|flag
vote up 0 vote down

Keep an eye on Bort. It is a base rails application which already has restful_authentication setup among other things. The guy doing it is planning on adding OpenID.

link|flag
vote up 0 vote down

Bort now has OpenID included in addition to restful_authentication.

link|flag
vote up 0 vote down

Oddly, this subject doesn't appear to have received much attention from the Rails community since 2007.

The latest trunk of Bort didn't seem to work with Rails 2.3.x, so I forked it and got it working.

I also added some things that I personally use - like yui reset/base, jquery, etc.

The fork is very much still a work in progress, but I hope to provide broad, tested authentication support for restful auth, google auth, facebook connect, twitter, etc.

http://github.com/lukebayes/bort

link|flag
vote up 0 vote down

I have found that using BinaryLogic's Authlogic gems are quite easy and straightforward to use. See Authlogic and its OpenID plugin.

You can download an example application or try it!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.