robdimarco / omniauth_crowd

An OmniAuth provider for Atlassian Crowd REST API
MIT License
30 stars 21 forks source link

omniauth_crowd

The omniauth_crowd library is an OmniAuth provider that supports authentication against Atlassian Crowd REST apis.

Build Status

Helpful links

Install and use

1. Add the OmniAuth Crowd REST plugin to your Gemfile

gem 'omniauth', '>= 1.0.0'  # We depend on this
gem "omniauth_crowd"

2. You will need to configure OmniAuth to use your crowd authentication. This is generally done in Rails in the config/initializers/omniauth.rb with...

Rails.application.config.middleware.use OmniAuth::Builder do
  provider :crowd, :crowd_server_url=>"https://crowd.mycompanyname.com/crowd", :application_name=>"app", :application_password=>"password"
end

You will need to supply the correct server URL, application name and password

Contributing to omniauth_crowd

Copyright

Copyright (c) 2011-14 Rob Di Marco. See LICENSE.txt for further details.