Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 459 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 459 Bytes

OmniAuth VoiceArchive

Strategy to authenticate VoiceArchive in OmniAuth.

It's using the OAuth2 from the VoiceArchive API

Usage

Add the strategy to your Gemfile alongside OmniAuth:

gem 'omniauth'
gem 'omniauth-voicearchive'

Integrate this strategy to your OmniAuth middleware.

use OmniAuth::Builder do
  provider :voicearchive, ENV['VOICEARCHIVE_CLIENT'], ENV['VOICEARCHIVE_SECRET']
end