Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.37 KB

Readme.md

File metadata and controls

47 lines (31 loc) · 1.37 KB

Gem Version Build Status Code Climate

OmniAuth::Infusionsoft

An Infusionsoft OAuth2 strategy for OmniAuth.

For more details, read the Infusionsoft documentation: https://developer.infusionsoft.com/docs

Installation

Add this line to your application's Gemfile:

gem 'omniauth-infusionsoft'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install omniauth-infusionsoft

Usage

Sign up for an Infusionsoft developer account: https://developer.infusionsoft.com

An example that you might put into a Rails initializer at config/initializers/omniauth.rb

Rails.application.config.middleware.use OmniAuth::Builder do
  provider :infusionsoft, ENV['INFUSIONSOFT_KEY'], ENV['INFUSIONSOFT_SECRET']
end

Contributing

  1. Fork it
  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 new Pull Request