Merge pull request #110 from hxiong388/update-readme

Add service account example
This commit is contained in:
Heng Xiong 2017-07-13 15:12:44 -07:00 committed by GitHub
commit 0f7fe1ea91
1 changed files with 12 additions and 0 deletions

View File

@ -131,6 +131,18 @@ end
# OK to use credentials # OK to use credentials
``` ```
### 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)
authorizer.fetch_access_token!
```
### Storage ### Storage
Authorizers require a storage instance to manage long term persistence of Authorizers require a storage instance to manage long term persistence of