Official OmniAuth strategy for authenticating with an Authentiq ID mobile app (iOS, Android).
Application credentials (YOUR_CLIENT_ID and YOUR_CLIENT_SECRET below) can be obtained at Authentiq.
Add this line to your application's Gemfile
gem 'omniauth-authentiq', '~> 0.3.0'
Then bundle:
$ bundle install
use OmniAuth::Builder do
provider :authentiq, ENV['AUTHENTIQ_KEY'], ENV['AUTHENTIQ_SECRET'],
scope: 'aq:name email~rs aq:push'
end
You can read the wiki for more extensive information on how to use the Authentiq Omniauth strategy for your rails application
- Homepage
- Installation and basic usage
- Scopes, redirect uri configuration and response data
- Remote Logout (Backchannel-logout)
Tests are coming soon.
Bug reports and pull requests are welcome here