Please note that this is merely a fork of a sub-directory in this example Ruby Microsoft Graph repo with the README tweaked to show how to install the gem directly from git (since it doesn't seem to actually be published on RubyGems).
🤘
Microsoft V2 OAuth2 Strategy for OmniAuth. Can be used to authenticate with Microsoft Services and get a token for the Microsoft Graph Api.
Add this line to your application's Gemfile:
gem 'omniauth-microsoft_v2_auth', github: 'dooly-ai/omniauth-microsoft_v2_auth'
And then execute:
$ bundle
Or install it yourself as:
$ gem install omniauth-microsoft_v2_auth
Rails.application.config.middleware.use OmniAuth::Builder do
provider :microsoft_v2_auth, ENV['AZURE_APPLICATION_CLIENT_ID'], ENV['AZURE_APPLICATION_CLIENT_SECRET']
end