Authentication

In general, the google-cloud-video_intelligence-v1beta2 library uses Service Account credentials to connect to Google Cloud services. When running within Google Cloud Platform environments the credentials will be discovered automatically. When running on other environments, the Service Account credentials can be specified by providing the path to the JSON keyfile for the account (or the JSON itself) in environment variables. Additionally, Cloud SDK credentials can also be discovered automatically, but this is only recommended during development.

Quickstart

  1. Create a service account and credentials.
  2. Set the environment variable.
export VIDEO_INTELLIGENCE_CREDENTIALS=path/to/keyfile.json
  1. Initialize the client.
require "google/cloud/video_intelligence/v1beta2"

client = ::Google::Cloud::VideoIntelligence::V1beta2::VideoIntelligenceService::Client.new

Credential Lookup

The google-cloud-video_intelligence-v1beta2 library aims to make authentication as simple as possible, and provides several mechanisms to configure your system without requiring Service Account Credentials directly in code.

Credentials are discovered in the following order:

  1. Specify credentials in method arguments
  2. Specify credentials in configuration
  3. Discover credentials path in environment variables
  4. Discover credentials JSON in environment variables
  5. Discover credentials file in the Cloud SDK's path
  6. Discover GCP credentials

Google Cloud Platform environments

When running on Google Cloud Platform (GCP), including Google Compute Engine (GCE), Google Kubernetes Engine (GKE), Google App Engine (GAE), Google Cloud Functions (GCF) and Cloud Run, Credentials are discovered automatically. Code should be written as if already authenticated.

Environment Variables

The Credentials JSON can be placed in environment variables instead of declaring them directly in code. Each service has its own environment variable, allowing for different service accounts to be used for different services. (See the READMEs for the individual service gems for details.) The path to the Credentials JSON file can be stored in the environment variable, or the Credentials JSON itself can be stored for environments such as Docker containers where writing files is difficult or not encouraged.

The environment variables that google-cloud-video_intelligence-v1beta2 checks for credentials are configured on the service Credentials class (such as Google::Cloud::VideoIntelligence::V1beta2::VideoIntelligenceService::Credentials):

  1. VIDEO_INTELLIGENCE_CREDENTIALS - Path to JSON file, or JSON contents
  2. VIDEO_INTELLIGENCE_KEYFILE - Path to JSON file, or JSON contents
  3. GOOGLE_CLOUD_CREDENTIALS - Path to JSON file, or JSON contents
  4. GOOGLE_CLOUD_KEYFILE - Path to JSON file, or JSON contents
  5. GOOGLE_APPLICATION_CREDENTIALS - Path to JSON file
require "google/cloud/video_intelligence/v1beta2"

ENV["VIDEO_INTELLIGENCE_CREDENTIALS"] = "path/to/keyfile.json"

client = ::Google::Cloud::VideoIntelligence::V1beta2::VideoIntelligenceService::Client.new

Configuration

The Credentials JSON can be configured instead of placing them in environment variables. Either on an individual client initialization:

require "google/cloud/video_intelligence/v1beta2"

client = ::Google::Cloud::VideoIntelligence::V1beta2::VideoIntelligenceService::Client.new do |config|
  config.credentials = "path/to/keyfile.json"
end

Or configured globally for all clients:

require "google/cloud/video_intelligence/v1beta2"

::Google::Cloud::VideoIntelligence::V1beta2::VideoIntelligenceService::Client.configure do |config|
  config.credentials = "path/to/keyfile.json"
end

client = ::Google::Cloud::VideoIntelligence::V1beta2::VideoIntelligenceService::Client.new

Cloud SDK

This option allows for an easy way to authenticate during development. If credentials are not provided in code or in environment variables, then Cloud SDK credentials are discovered.

To configure your system for this, simply:

  1. Download and install the Cloud SDK
  2. Authenticate using OAuth 2.0 $ gcloud auth login
  3. Write code as if already authenticated.

NOTE: This is not recommended for running in production. The Cloud SDK should only be used during development.

Creating a Service Account

Google Cloud requires Service Account Credentials to connect to the APIs. You will use the JSON key file to connect to most services with google-cloud-video_intelligence-v1beta2.

If you are not running this client within Google Cloud Platform environments, you need a Google Developers service account.

  1. Visit the Google Developers Console.
  2. Create a new project or click on an existing project.
  3. Activate the slide-out navigation tray and select API Manager. From here, you will enable the APIs that your application requires.

Enable the APIs that your application requires

Note: You may need to enable billing in order to use these services.

  1. Select Credentials from the side navigation.

You should see a screen like one of the following.

Create a new service account

Create a new service account With Existing Keys

Find the "Add credentials" drop down and select "Service account" to be guided through downloading a new JSON key file.

If you want to re-use an existing service account, you can easily generate a new key file. Just select the account you wish to re-use, and click "Generate new JSON key":

Re-use an existing service account

The key file you download will be used by this library to authenticate API requests and should be stored in a secure location.