OmniAuth strategy for Ely.by.
Go to file
2017-11-03 14:18:22 +03:00
lib Possible fix for omniauth-oauth2 package support 2017-10-31 14:36:30 +03:00
spec Initial commit 2016-11-24 14:15:11 +03:00
.gitignore Initial commit 2016-11-24 14:15:11 +03:00
.rspec Initial commit 2016-11-24 14:15:11 +03:00
Gemfile Initial commit 2016-11-24 14:15:11 +03:00
Guardfile Initial commit 2016-11-24 14:15:11 +03:00
LICENSE.txt Initial commit 2016-11-24 14:15:11 +03:00
omniauth-ely.gemspec Initial commit 2016-11-24 14:15:11 +03:00
Rakefile Initial commit 2016-11-24 14:15:11 +03:00
README.md Initial commit 2016-11-24 14:15:11 +03:00

OmniAuth Ely.by

This is the official OmniAuth strategy for authenticating to Ely.by. To use it, you'll need to sign up for an OAuth2 Application ID and Secret on the Ely.by Account Applications Page.

Usage

Add the strategy to your Gemfile alongside OmniAuth:

gem 'omniauth'
gem 'omniauth-ely'

Integrate this strategy to your OmniAuth middleware.

use OmniAuth::Builder do
  provider :ely, 'application_id', 'secret'
end

You need to add your key and secret.

For more information check the OmniAuth wiki.