Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 578 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 578 Bytes

Omniauth::MicrosoftV2Auth

Microsoft V2 OAuth2 Strategy for OmniAuth. Can be used to authenticate with Microsoft Services and get a token for the Microsoft Graph Api.

Installation

Add this line to your application's Gemfile:

gem 'omniauth-microsoft_v2_auth'

And then execute:

$ bundle

Or install it yourself as:

$ gem install omniauth-microsoft_v2_auth

Usage

Rails.application.config.middleware.use OmniAuth::Builder do
  provider :microsoft_v2_auth, ENV['AZURE_APPLICATION_CLIENT_ID'], ENV['AZURE_APPLICATION_CLIENT_SECRET']
end