Coder Social home page Coder Social logo

omniauth-doximity_oauth2's Introduction

OmniAuth Doximity OAuth2

Strategy to authenticate with Doximity via OAuth2 in OmniAuth.

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

Here's an example for adding the middleware to a Rails app in config/initializers/omniauth.rb:

Rails.application.config.middleware.use OmniAuth::Builder do
    :doximity, ENV['DOXIMITY_CLIENT_ID'], ENV['DOXIMITY_CLIENT_SECRET'], { strategy_class: OmniAuth::Strategies::DoximityOauth2, scope: 'email'}
end

Devise

First define your application id and secret in config/initializers/devise.rb

config.omniauth :doximity, ENV['DOXIMITY_CLIENT_ID'], ENV['DOXIMITY_CLIENT_SECRET'], { strategy_class: OmniAuth::Strategies::DoximityOauth2, scope: 'email'}

Then add the following to config/routes.rb so the callback routes are defined.

devise_for :users, :controllers => { omniauth_callbacks: 'users/omniauth_callbacks' }

Make sure your model is omniauthable. Generally this is app/models/user.rb

devise :omniauthable, omniauth_providers: [:doximity]

Then make sure your callbacks controller is setup.

class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
  def doximity
    # LOGIC
    # you can retrive your request with: request.env['omniauth.auth']
  end
end

For your views you can login using:

<%= link_to 'Sign in with Doximity', user_omniauth_authorize_path(:doximity) %>

An overview is available at https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview

Contributing

  1. Fork it ( https://github.com/pushhealth/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

omniauth-doximity_oauth2's People

Watchers

James Cloos avatar Andy Kwong avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.