No commit activity in last 3 years
No release in over 3 years
An OmniAuth strategy implementation for obtaining access to the Doximity API; API documentation at: http://developer.doximity.com/
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
~> 10.3
~> 3.0
~> 0.8

Runtime

 Project Readme

Omniauth::DoximityOauth2

A Doximity OAuth2 Strategy for OmniAuth

Doximity API Information at http://developer.doximity.com/oauth.html

Continuous Integration Status

Build Status

Installation

Add this line to your application's Gemfile:

gem 'omniauth-doximity_oauth2'

And then execute:

$ bundle

Or install it yourself as:

$ gem install omniauth-doximity_oauth2

Usage

  1. Request OAuth Application Credentials from the Doximity team: http://developer.doximity.com/preferred/
  2. Enable the Strategy
# Rails
Rails.application.config.middleware.use OmniAuth::Builder do
  provider :doximity,
           ENV['DOXIMITY_OAUTH_CLIENT_ID'],
           ENV['DOXIMITY_OAUTH_CLIENT_SECRET']
end

Contributing

  1. Fork it ( https://github.com/indiebrain/omniauth-doximity_oauth2/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request