OmniAuth strategy for Ely.by.
Go to file
2023-11-04 02:58:26 +01:00
lib Allow omniauth 2.0, specify user URL as https 2023-11-04 02:57:18 +01:00
spec Allow omniauth 2.0, specify user URL as https 2023-11-04 02:57:18 +01:00
.gitignore Include Gemfile.lock 2017-11-03 15:47:39 +03:00
.rspec Initial commit 2016-11-24 14:15:11 +03:00
Gemfile Initial commit 2016-11-24 14:15:11 +03:00
Gemfile.lock Allow omniauth 2.0, specify user URL as https 2023-11-04 02:57:18 +01: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 Allow omniauth 2.0, specify user URL as https 2023-11-04 02:57:18 +01:00
Rakefile Initial commit 2016-11-24 14:15:11 +03:00
README.md Fix README 2023-11-04 02:58:26 +01: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.