google-api-ruby-client/samples/cli
Daniel Azuma d30bfb4084
docs: Update readme and samples to reflect separated packages
2021-01-07 13:31:56 -08:00
..
lib typo fix: visists -> visits (#594) 2017-06-27 10:18:39 -07:00
.env #402 - Remove errant line 2016-04-25 10:51:01 -07:00
Gemfile docs: Update readme and samples to reflect separated packages 2021-01-07 13:31:56 -08:00
README.md Add a small web sample showing incremental authorization & use of APIs 2016-01-20 12:21:08 -08:00
google-api-samples Add a small web sample showing incremental authorization & use of APIs 2016-01-20 12:21:08 -08:00

README.md

API Samples

This directory contains a small but growing collection of samples for various APIs. Each sample can be run on the command line from the google-api-samples script.

Contributions of new samples are welcome.

Setup

Depending on which particular samples you want to run, different steps may be required. Some samples, like Pub/Sub, require a service account, others like Drive, Calendar, and YouTube require an OAuth Client ID. And in some cases like Translate, only an API key is needed.

  • Create a project at https://console.developers.google.com
  • Go to the API Manager and enable the APIs you'd like to try
  • Go to Credentials and create the appropriate type of credential for the sample
    • For keys, use 'Server key' as the type
    • For OAuth Client IDs, use 'Other' as the type
    • For service accounts, use the 'JSON' key type

Additional details on how to enable APIs and create credentials can be found in the help guide in the console.

Example Environment Settings

For convenience, application credentials can be read from the shell environment or placed in a .env file.

After setup, your .env file might look something like:

GOOGLE_API_KEY=AIzaSyC6GvjvPlEzJpTW2bW2t0MPHXXXXXXXXXX
GOOGLE_CLIENT_ID=479164972499-i7j6av7bp2s4on5ltb7pjXXXXXXXXXX.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=JBotCTG5biFWGzXXXXXXXXXX
GOOGLE_APPLICATION_CREDENTIALS=~/ruby-samples-cred.json

Running the samples

To list the available sample modules, run the script:

google-api-samples

To get help on a specific set of samples, run:

google-api-samples help <module>