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

Development

Runtime

~> 0.9.2
~> 1.1.4
 Project Readme

OmniAuth Smartcloud

OmniAuth strategy for authenticating to IBM's Smartcloud for Social Business.

Basic Usage

use OmniAuth::Builder do
  provider :smartcloud, ENV['SMARTCLOUD_KEY'], ENV['SMARTCLOUD_SECRET']
end

Dependancy Note

For some reason, IBM has chose to make the content type of the token request response to be 'text/plain' even though it is a url query string. Until IBM comes to their senses and changes the content type of the response to 'application/x-www-form-urlencoded', or my pull request is merged, you must include my fork of the OAuth2 gem in the Gemfile of your project.

gem 'oauth2', :git => 'git@github.com:tagCincy/oauth2.git'