0.0
No commit activity in last 3 years
No release in over 3 years
OmniAuth strategy for E*TRADE
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Omniauth::Etrade

This is the official OmniAuth strategy for authenticating with ETrade's API. To use it, you'll need a consumer key and consumer secret which can be obtained from ETrade (more information available at developer.etrade.com)

Installation

Add the strategy to your application's Gemfile:

gem 'omniauth-etrade'

And then execute:

bundle

Or install it yourself as:

gem install omniauth-etrade

Usage

Once installation is complete. Integrate the strategy into your middleware:

use OmniAuth::Builder do
  provider :etrade, ENV['CONSUMER_KEY'], ENV['CONSUMER_SECRET']
end

In Rails, you'll want to add to the middleware stack:

Rails.application.config.middleware.use OmniAuth::Builder do
  provider :etrade, ENV['CONSUMER_KEY'], ENV['CONSUMER_SECRET']
end

If using devise, you'll want to declare provider in your config\initializers\devise.rb:

config.omniauth :etrade, ENV['CONSUMER_KEY'], ENV['CONSUMER_SECRET']

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