omniauth-gplus
is a Google+ strategy for OmniAuth.
It allows you to easily interact with the Google+ OAuth2 endpoint.
Requirements: A GPlus API key/secret
You can either install manually:
$ gem install omniauth-gplus
Or put it in your Gemfile
:
source 'https://rubygems.org'
gem 'omniauth-gplus', '~> 2.0'
To use omniauth-gplus
in Rails you only need to put this in a initializer:
Rails.application.config.middleware.use OmniAuth::Builder do
provider :gplus, ENV['GPLUS_KEY'], ENV['GPLUS_SECRET']
end
By default the gem uses the userinfo.email
scope, but you can get more information by using this interface:
provider :gplus, ENV['GPLUS_KEY'], ENV['GPLUS_SECRET'], scope: 'userinfo.email, userinfo.profile'
Here are the different scopes:
To identify the user as "me" in all requests use this scope:
To get all of these AND log the user in:
If you use the plus.login
scope you can request visibleactions
in order to allow your app to post App Activities on behalf of your users. To request visibleactions
, use the following interface:
provider :gplus, ENV['GPLUS_KEY'], ENV['GPLUS_SECRET'], scope: 'plus.login', request_visible_actions: 'AddActivity,BuyActivity'
To see and learn about all of the available App Activity types, visit: https://developers.google.com/+/api/moment-types/
To get a refresh token please pass the following:
provider :gplus, ENV['GPLUS_KEY'], ENV['GPLUS_SECRET'], scope: 'plus.login', request_visible_actions: 'AddActivity,BuyActivity', access_type: 'offline'
The information schema looks like this:
info do
{
'email' => 'sam@sam-dunne.com',
'name' => 'Sam Dunne',
'first_name' => 'Sam',
'last_name' => 'Dunne',
'image' => 'http://somelongurl.png',
'urls' => {
"Google+" => 'http://urltouserprofile.com'
}
}
end
extra do
{
'locale' => 'en',
'gender' => 'male',
'birthday' => '2013-12-24',
'raw_info' => # huge hash
}
end
Actively tested with the following Ruby versions:
- MRI 2.1.0
- MRI 2.0.0
- MRI 1.9.3
- MRI 1.9.2
- JRuby HEAD
- JRuby 1.9
- Rubinius (latest stable)
Copyright (c) 2014 Sam Dunne
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.