This is the official OmniAuth strategy for authenticating with MyMLH. To use it, you'll need to register an application and obtain a OAuth Application ID and Secret from MyMLH.
It now supports MyMLH API V2. Read the MyMLH V2 docs here.
Once you have done so, you can follow the instructions below:
You need to have at least Ruby 2.2.4 to use this gem.
Add this line to your application's Gemfile:
gem 'omniauth-mlh'
And then execute:
$ bundle
Or install it yourself as:
$ gem install omniauth-mlh
use OmniAuth::Builder do
provider :mlh, ENV['MY_MLH_KEY'], ENV['MY_MLH_SECRET'], scope: 'default email birthday'
end
# config/devise.rb
Devise.setup do |config|
config.provider :mlh, ENV['MY_MLH_KEY'], ENV['MY_MLH_SECRET'], scope: 'default email birthday'
end
- Fork it ( https://github.com/mlh/my-mlh-omniauth/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
We used part of datariot/omniauth-paypal's code to help us test this gem.
Have a question about the API or this library? Start by checking out the official MyMLH documentation. If you still can't find an answer, tweet at @MLHacks or drop an email to engineering@mlh.io.