Repository is archived
No release in over 3 years
Low commit activity in last 3 years
An Infusionsoft OAuth2 strategy for OmniAuth
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.5
~> 10.3
~> 3.0

Runtime

>= 1.3.2, ~> 1.3
 Project Readme

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