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
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request