Rails authentication plugin recommendation

后端 未结 7 1707
梦如初夏
梦如初夏 2020-12-25 14:44

I would like to add authentication to my Rails app. I came across few plugins that do this: acts_as_authenticated, restful_authentication, Authlogic...etc

I haven\'

7条回答
  •  悲哀的现实
    2020-12-25 15:14

    If you are looking for alternatives to the standard username/password scheme and using only external identity providers, there is a new plugin called OmniAuth that works at the rack level (so it's independent from Ruby on rails) and supports multiple external identity providers like OAuth, Facebook Connect, Google and LDAP.

    There are also two Railscast episodes on how to use it: Episode 1 and Episode 2

提交回复
热议问题