Persona is Shutting Down
Mozilla has announced that Persona will be shutting down November 2016. warden-browserid relies on the Persona service and will stop functioning properly once Persona is shut down. While it is possible to self-host Persona and configure warden-browserid to rely on your own instance, this is difficult and not recommended. See the wiki page linked above for recommended alternatives to Persona for authentication.
Warden::BrowserId
Authenticate your Warden-enabled app using BrowserID from Mozilla
Installation
Add this line to your application's Gemfile:
gem 'warden-browserid'
And then execute:
$ bundle
Or install it yourself as:
$ gem install warden-browserid
Usage
I use the warden-browserid strategy with Devise, configured like this in config/initializers/devise.rb in Rails:
config.warden do |manager|
manager.default_strategies(:scope => :user).unshift :browserid
end
See the [Warden wiki] 1 for other usage. The following option is available, since [Mozilla] 2 says to use BrowserID as follows:
manager.browserid_url = "dev.diresworb.org" # Development (default)
# manager.browserid_url = "diresworb.org" # Beta
# manager.browserid_url = "browserid.org" # Production
I use the [devise-browserid] 3 gem to enable client side action for BrowserID.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request