2015-03-23 23:40:55 +00:00
|
|
|
# Google Auth Library for Ruby
|
2015-02-25 02:09:39 +00:00
|
|
|
|
|
|
|
<dl>
|
|
|
|
<dt>Homepage</dt><dd><a href="http://www.github.com/google/google-auth-library-ruby">http://www.github.com/google/google-auth-library-ruby</a></dd>
|
|
|
|
<dt>Authors</dt><dd><a href="mailto:temiola@google.com">Tim Emiola</a></dd>
|
|
|
|
<dt>Copyright</dt><dd>Copyright © 2015 Google, Inc.</dd>
|
|
|
|
<dt>License</dt><dd>Apache 2.0</dd>
|
|
|
|
</dl>
|
|
|
|
|
2015-03-23 23:40:55 +00:00
|
|
|
[![Gem Version](https://badge.fury.io/rb/googleauth.svg)](http://badge.fury.io/rb/googleauth)
|
2017-09-13 12:49:57 +00:00
|
|
|
[![Build Status](https://secure.travis-ci.org/google/google-auth-library-ruby.svg)](http://travis-ci.org/google/google-auth-library-ruby)
|
|
|
|
[![Coverage Status](https://coveralls.io/repos/google/google-auth-library-ruby/badge.svg)](https://coveralls.io/r/google/google-auth-library-ruby)
|
2015-02-25 02:09:39 +00:00
|
|
|
|
|
|
|
## Description
|
|
|
|
|
2015-02-25 03:06:28 +00:00
|
|
|
This is Google's officially supported ruby client library for using OAuth 2.0
|
2015-02-25 02:09:39 +00:00
|
|
|
authorization and authentication with Google APIs.
|
|
|
|
|
|
|
|
## Alpha
|
|
|
|
|
|
|
|
This library is in Alpha. We will make an effort to support the library, but
|
|
|
|
we reserve the right to make incompatible changes when necessary.
|
|
|
|
|
|
|
|
## Install
|
|
|
|
|
|
|
|
Be sure `https://rubygems.org/` is in your gem sources.
|
|
|
|
|
|
|
|
For normal client usage, this is sufficient:
|
|
|
|
|
|
|
|
```bash
|
2015-02-25 02:33:37 +00:00
|
|
|
$ gem install googleauth
|
2015-02-25 02:09:39 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## Example Usage
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
require 'googleauth'
|
|
|
|
|
|
|
|
# Get the environment configured authorization
|
2015-12-09 23:45:22 +00:00
|
|
|
scopes = ['https://www.googleapis.com/auth/cloud-platform',
|
|
|
|
'https://www.googleapis.com/auth/compute']
|
2015-02-25 18:51:48 +00:00
|
|
|
authorization = Google::Auth.get_application_default(scopes)
|
2015-02-25 02:09:39 +00:00
|
|
|
|
|
|
|
# Add the the access token obtained using the authorization to a hash, e.g
|
|
|
|
# headers.
|
|
|
|
some_headers = {}
|
|
|
|
authorization.apply(some_headers)
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
## Application Default Credentials
|
|
|
|
|
|
|
|
This library provides an implementation of
|
|
|
|
[application default credentials][application default credentials] for Ruby.
|
|
|
|
|
|
|
|
The Application Default Credentials provide a simple way to get authorization
|
|
|
|
credentials for use in calling Google APIs.
|
|
|
|
|
|
|
|
They are best suited for cases when the call needs to have the same identity
|
|
|
|
and authorization level for the application independent of the user. This is
|
|
|
|
the recommended approach to authorize calls to Cloud APIs, particularly when
|
|
|
|
you're building an application that uses Google Compute Engine.
|
|
|
|
|
2015-12-09 23:45:22 +00:00
|
|
|
## User Credentials
|
|
|
|
|
|
|
|
The library also provides support for requesting and storing user
|
|
|
|
credentials (3-Legged OAuth2.) Two implementations are currently available,
|
|
|
|
a generic authorizer useful for command line apps or custom integrations as
|
|
|
|
well as a web variant tailored toward Rack-based applications.
|
|
|
|
|
|
|
|
The authorizers are intended for authorization use cases. For sign-on,
|
2016-01-07 01:02:05 +00:00
|
|
|
see [Google Identity Platform](https://developers.google.com/identity/)
|
2015-12-09 23:45:22 +00:00
|
|
|
|
|
|
|
### Example (Web)
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
require 'googleauth'
|
|
|
|
require 'googleauth/web_user_authorizer'
|
|
|
|
require 'googleauth/stores/redis_token_store'
|
|
|
|
require 'redis'
|
|
|
|
|
|
|
|
client_id = Google::Auth::ClientId.from_file('/path/to/client_secrets.json')
|
|
|
|
scope = ['https://www.googleapis.com/auth/drive']
|
|
|
|
token_store = Google::Auth::Stores::RedisTokenStore.new(redis: Redis.new)
|
|
|
|
authorizer = Google::Auth::WebUserAuthorizer.new(
|
|
|
|
client_id, scope, token_store, '/oauth2callback')
|
|
|
|
|
|
|
|
|
|
|
|
get('/authorize') do
|
|
|
|
# NOTE: Assumes the user is already authenticated to the app
|
|
|
|
user_id = request.session['user_id']
|
|
|
|
credentials = authorizer.get_credentials(user_id, request)
|
|
|
|
if credentials.nil?
|
2016-01-15 20:16:47 +00:00
|
|
|
redirect authorizer.get_authorization_url(login_hint: user_id, request: request)
|
2015-12-09 23:45:22 +00:00
|
|
|
end
|
|
|
|
# Credentials are valid, can call APIs
|
|
|
|
# ...
|
|
|
|
end
|
|
|
|
|
|
|
|
get('/oauth2callback') do
|
|
|
|
target_url = Google::Auth::WebUserAuthorizer.handle_auth_callback_deferred(
|
|
|
|
request)
|
|
|
|
redirect target_url
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
|
|
|
### Example (Command Line)
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
require 'googleauth'
|
|
|
|
require 'googleauth/stores/file_token_store'
|
|
|
|
|
2016-01-07 01:02:05 +00:00
|
|
|
OOB_URI = 'urn:ietf:wg:oauth:2.0:oob'
|
|
|
|
|
2015-12-09 23:45:22 +00:00
|
|
|
scope = 'https://www.googleapis.com/auth/drive'
|
|
|
|
client_id = Google::Auth::ClientId.from_file('/path/to/client_secrets.json')
|
|
|
|
token_store = Google::Auth::Stores::FileTokenStore.new(
|
|
|
|
:file => '/path/to/tokens.yaml')
|
|
|
|
authorizer = Google::Auth::UserAuthorizer.new(client_id, scope, token_store)
|
|
|
|
|
|
|
|
credentials = authorizer.get_credentials(user_id)
|
|
|
|
if credentials.nil?
|
2016-01-07 01:02:05 +00:00
|
|
|
url = authorizer.get_authorization_url(base_url: OOB_URI )
|
2015-12-09 23:45:22 +00:00
|
|
|
puts "Open #{url} in your browser and enter the resulting code:"
|
|
|
|
code = gets
|
|
|
|
credentials = authorizer.get_and_store_credentials_from_code(
|
|
|
|
user_id: user_id, code: code, base_url: OOB_URI)
|
|
|
|
end
|
|
|
|
|
|
|
|
# OK to use credentials
|
|
|
|
```
|
|
|
|
|
2017-07-13 21:58:23 +00:00
|
|
|
### Example (Service Account)
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
scope = 'https://www.googleapis.com/auth/androidpublisher'
|
|
|
|
|
|
|
|
authorizer = Google::Auth::ServiceAccountCredentials.make_creds(
|
|
|
|
json_key_io: File.open('/path/to/service_account_json_key.json'),
|
|
|
|
scope: scope)
|
2019-01-22 19:44:56 +00:00
|
|
|
|
2017-07-13 21:58:23 +00:00
|
|
|
authorizer.fetch_access_token!
|
|
|
|
```
|
|
|
|
|
2018-07-12 19:20:30 +00:00
|
|
|
### Example (Environment Variables)
|
|
|
|
|
|
|
|
```bash
|
|
|
|
export GOOGLE_ACCOUNT_TYPE=service_account
|
|
|
|
export GOOGLE_CLIENT_ID=000000000000000000000
|
|
|
|
export GOOGLE_CLIENT_EMAIL=xxxx@xxxx.iam.gserviceaccount.com
|
|
|
|
export GOOGLE_PRIVATE_KEY="-----BEGIN PRIVATE KEY-----\n...\n-----END PRIVATE KEY-----\n"
|
|
|
|
```
|
|
|
|
|
2019-01-22 19:44:56 +00:00
|
|
|
```ruby
|
|
|
|
require 'googleauth'
|
|
|
|
require 'google/apis/drive_v3'
|
|
|
|
|
|
|
|
Drive = ::Google::Apis::DriveV3
|
|
|
|
drive = Drive::DriveService.new
|
|
|
|
|
|
|
|
# Auths with ENV vars:
|
|
|
|
# "GOOGLE_CLIENT_ID",
|
|
|
|
# "GOOGLE_CLIENT_EMAIL",
|
|
|
|
# "GOOGLE_ACCOUNT_TYPE",
|
|
|
|
# "GOOGLE_PRIVATE_KEY"
|
|
|
|
auth = ::Google::Auth::ServiceAccountCredentials
|
|
|
|
.make_creds(scope: 'https://www.googleapis.com/auth/drive')
|
|
|
|
drive.authorization = auth
|
|
|
|
|
|
|
|
list_files = drive.list_files()
|
|
|
|
|
|
|
|
```
|
|
|
|
|
2015-12-09 23:45:22 +00:00
|
|
|
### Storage
|
|
|
|
|
|
|
|
Authorizers require a storage instance to manage long term persistence of
|
|
|
|
access and refresh tokens. Two storage implementations are included:
|
|
|
|
|
|
|
|
* Google::Auth::Stores::FileTokenStore
|
|
|
|
* Google::Auth::Stores::RedisTokenStore
|
|
|
|
|
|
|
|
Custom storage implementations can also be used. See
|
|
|
|
[token_store.rb](lib/googleauth/token_store.rb) for additional details.
|
|
|
|
|
2018-08-20 22:52:23 +00:00
|
|
|
## Supported Ruby Versions
|
|
|
|
|
|
|
|
This library is currently supported on Ruby 1.9+.
|
|
|
|
|
|
|
|
However, Ruby 2.4 or later is strongly recommended, as earlier releases have
|
|
|
|
reached or are nearing end-of-life. After March 31, 2019, Google will provide
|
|
|
|
official support only for Ruby versions that are considered current and
|
|
|
|
supported by Ruby Core (that is, Ruby versions that are either in normal
|
|
|
|
maintenance or in security maintenance).
|
|
|
|
See https://www.ruby-lang.org/en/downloads/branches/ for further details.
|
|
|
|
|
2015-02-25 02:09:39 +00:00
|
|
|
## License
|
|
|
|
|
|
|
|
This library is licensed under Apache 2.0. Full license text is
|
|
|
|
available in [COPYING][copying].
|
|
|
|
|
|
|
|
## Contributing
|
|
|
|
|
|
|
|
See [CONTRIBUTING][contributing].
|
|
|
|
|
|
|
|
## Support
|
|
|
|
|
|
|
|
Please
|
|
|
|
[report bugs at the project on Github](https://github.com/google/google-auth-library-ruby/issues). Don't
|
|
|
|
hesitate to
|
|
|
|
[ask questions](http://stackoverflow.com/questions/tagged/google-auth-library-ruby)
|
|
|
|
about the client or APIs on [StackOverflow](http://stackoverflow.com).
|
|
|
|
|
|
|
|
[google-apis-ruby-client]: (https://github.com/google/google-api-ruby-client)
|
|
|
|
[application default credentials]: (https://developers.google.com/accounts/docs/application-default-credentials)
|
|
|
|
[contributing]: https://github.com/google/google-auth-library-ruby/tree/master/CONTRIBUTING.md
|
|
|
|
[copying]: https://github.com/google/google-auth-library-ruby/tree/master/COPYING
|