Jinesh Parekh
Jinesh Parekh

Reputation: 2141

How do I create a Stack Overflow-like registration process?

I am wondering how I can build the registration process like we have in Stack Overflow, where a user can login using one of several already existing accounts? I would prefer using Rails as a technology platform.

Upvotes: 2

Views: 187

Answers (4)

user380692
user380692

Reputation: 246

Are you looking for this? http://testingauth.heroku.com/

Upvotes: 1

Meduza
Meduza

Reputation: 542

You can use omniauth gem to implement openId auth. Also, it possible to extend your existing user auth systems. See great screencast about this at railscast: OmniAuth Part 1

Upvotes: 0

nathanvda
nathanvda

Reputation: 50057

Check out OmniAuth. There are a few railscasts describing it.

Upvotes: 0

plang
plang

Reputation: 5656

I'm not sure this is exactly what you need, but the devise module, available on github, makes it very easy to build a authentication system in a rails application.

For authorization, another great module is called "cancan". You might need that too.

Upvotes: 0

Related Questions