Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/authentiqid/omniauth-authentiq
OmniAuth strategy for authenticating with Authentiq ID apps (iOS, Android). Supports OpenID Connect.
https://github.com/authentiqid/omniauth-authentiq
authentiq oauth2 oidc omniauth openid-connect rails strategy
Last synced: 5 days ago
JSON representation
OmniAuth strategy for authenticating with Authentiq ID apps (iOS, Android). Supports OpenID Connect.
- Host: GitHub
- URL: https://github.com/authentiqid/omniauth-authentiq
- Owner: AuthentiqID
- License: mit
- Created: 2016-06-16T09:49:36.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-24T17:42:23.000Z (over 6 years ago)
- Last Synced: 2024-10-31T12:57:17.877Z (6 days ago)
- Topics: authentiq, oauth2, oidc, omniauth, openid-connect, rails, strategy
- Language: Ruby
- Homepage: https://www.authentiq.com/developers/
- Size: 59.6 KB
- Stars: 4
- Watchers: 4
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# OmniAuth Authentiq
Official [OmniAuth](https://github.com/omniauth/omniauth/wiki) strategy for authenticating with an Authentiq ID mobile app ([iOS](https://itunes.apple.com/us/app/authentiq-id/id964932341), [Android](https://play.google.com/store/apps/details?id=com.authentiq.authentiqid)).
Application credentials (YOUR_CLIENT_ID and YOUR_CLIENT_SECRET below) can be obtained [at Authentiq](https://www.authentiq.com/developers/?utm_source=github&utm_medium=readme&utm_campaign=omniauth-authentiq).
## Installation
Add this line to your application's Gemfile
```ruby
gem 'omniauth-authentiq', '~> 0.3.0'
```Then bundle:
$ bundle install
# Basic Usage with Rails
```ruby
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](https://github.com/AuthentiqID/omniauth-authentiq/wiki)
* [Installation and basic usage](https://github.com/AuthentiqID/omniauth-authentiq/wiki/Installation-and-basic-usage)
* [Scopes, redirect uri configuration and response data](https://github.com/AuthentiqID/omniauth-authentiq/wiki/Scopes,-callback-url-configuration-and-responses)
* [Remote Logout (Backchannel-logout)](https://github.com/AuthentiqID/omniauth-authentiq/wiki/Remote-logout)## Tests
Tests are coming soon.
## Contributing
Bug reports and pull requests are welcome [here](https://github.com/AuthentiqID/omniauth-authentiq)