Sha256: c0bef4e4184eebaa8add002a6ab050d57de7f4d77295ea9afda2327eb2943acc
Contents?: true
Size: 1.29 KB
Versions: 1
Compression:
Stored size: 1.29 KB
Contents
# omniauth-salesforce [OmniAuth](https://github.com/intridea/omniauth) Strategy for [salesforce.com](salesforce.com). Note: This is a fork of the [original](https://github.com/richardvanhook/omniauth-salesforce) project and is now the main repository for the omniauth-salesforce gem. ## Basic Usage ```ruby require "sinatra" require "omniauth" require "omniauth-salesforce" class MyApplication < Sinatra::Base use Rack::Session use OmniAuth::Builder do provider :salesforce, ENV['SALESFORCE_KEY'], ENV['SALESFORCE_SECRET'] end end ``` ## Including other sites ```ruby use OmniAuth::Builder do provider :salesforce, ENV['SALESFORCE_KEY'], ENV['SALESFORCE_SECRET'] provider OmniAuth::Strategies::SalesforceSandbox, ENV['SALESFORCE_SANDBOX_KEY'], ENV['SALESFORCE_SANDBOX_SECRET'] provider OmniAuth::Strategies::SalesforcePreRelease, ENV['SALESFORCE_PRERELEASE_KEY'], ENV['SALESFORCE_PRERELEASE_SECRET'] provider OmniAuth::Strategies::DatabaseDotCom, ENV['DATABASE_DOT_COM_KEY'], ENV['DATABASE_DOT_COM_SECRET'] end ``` ## Resources * [Article: Digging Deeper into OAuth 2.0 on Force.com](http://wiki.developerforce.com/index.php/Digging_Deeper_into_OAuth_2.0_on_Force.com)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
omniauth-salesforce-ultimate-1.2.0 | README.md |