OmniAuth Authentiq

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.

Installation

Add this line to your application's Gemfile

gem 'omniauth-authentiq', '~> 0.2.3'

Then bundle:

$ bundle install

Basic Usage with Rails

use OmniAuth::Builder do
  provider :authentiq, ENV['AUTHENTIQ_KEY'], ENV['AUTHENTIQ_SECRET'],
           scope: 'aq:name email~rs aq:push',
           enable_remote_sign_out: false
end

You can read the wiki for more extensive infomation on how to use the Authentiq Omniauth strategy for your rails application

Tests

Tests are coming soon.

Contributing

Bug reports and pull requests are welcome here