No commit activity in last 3 years
No release in over 3 years
Strategy to enable passwordless authentication in OmniAuth via Authentiq.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 1.5
 Project Readme

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.3.0'

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'
end

You can read the wiki for more extensive information 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