Stay organized with collectionsSave and categorize content based on your preferences.
Authentication
In general, the google-cloud-webrisk library usesService
Accountcredentials to connect to Google Cloud services. When running withinGoogle
Cloud Platform environmentsthe credentials will be discovered automatically. When running on other
environments, the Service Account credentials can be specified by providing the
path to theJSON
keyfilefor
the account (or the JSON itself) inenvironment
variables. Additionally, Cloud SDK credentials can also
be discovered automatically, but this is only recommended during development.
The google-cloud-webrisk library aims to make authentication
as simple as possible, and provides several mechanisms to configure your system
without providingProject IDandService Account Credentialsdirectly in
code.
Project IDis discovered in the following order:
Specify project ID in method arguments
Specify project ID in configuration
Discover project ID in environment variables
Discover GCP project ID
Discover project ID in credentials JSON
Credentialsare discovered in the following order:
Specify credentials in method arguments
Specify credentials in configuration
Discover credentials path in environment variables
Discover credentials JSON in environment variables
Discover credentials file in the Cloud SDK's path
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, theProject IDandCredentialsand are discovered
automatically. Code should be written as if already authenticated.
Environment Variables
TheProject IDandCredentials JSONcan 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 theCredentials JSONfile can be stored in the
environment variable, or theCredentials JSONitself can be stored for
environments such as Docker containers where writing files is difficult or not
encouraged.
The environment variables that google-cloud-webrisk checks for project ID are:
TheProject IDand the path to theCredentials JSONfile can be configured
instead of placing them in environment variables or providing them as arguments.
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.
NOTE:This isnotrecommended for running in production. The Cloud SDKshouldonly be used during development.
Creating a Service Account
Google Cloud requires aProject IDandService Account Credentialsto
connect to the APIs. You will use theProject IDandJSON key fileto
connect to most services with google-cloud-webrisk.
Create a new project or click on an existing project.
Activate the slide-out navigation tray and selectAPI Manager. From
here, you will enable the APIs that your application requires.
Note: You may need to enable billing in order to use these services.
SelectCredentialsfrom the side navigation.
You should see a screen like one of the following.
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":
The key file you download will be used by this library to authenticate API
requests and should be stored in a secure location.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-09-04 UTC."],[],[],null,["Authentication\n==============\n\nIn general, the google-cloud-webrisk library uses [Service\nAccount](https://cloud.google.com/iam/docs/creating-managing-service-accounts)\ncredentials to connect to Google Cloud services. When running within [Google\nCloud Platform environments](#google-cloud-platform-environments)\nthe credentials will be discovered automatically. When running on other\nenvironments, the Service Account credentials can be specified by providing the\npath to the [JSON\nkeyfile](https://cloud.google.com/iam/docs/managing-service-account-keys) for\nthe account (or the JSON itself) in [environment\nvariables](#environment-variables). Additionally, Cloud SDK credentials can also\nbe discovered automatically, but this is only recommended during development.\n\nQuickstart\n----------\n\n1. [Create a service account and credentials](#creating-a-service-account).\n2. Set the [environment variable](#environment-variables).\n\n export WEBRISK_CREDENTIALS=/path/to/json`\n\n1. Initialize the client.\n\n```ruby\nrequire \"google/cloud/webrisk\"\n\nclient = Google::Cloud::Webrisk.new\n```\n\nProject and Credential Lookup\n-----------------------------\n\nThe google-cloud-webrisk library aims to make authentication\nas simple as possible, and provides several mechanisms to configure your system\nwithout providing **Project ID** and **Service Account Credentials** directly in\ncode.\n\n**Project ID** is discovered in the following order:\n\n1. Specify project ID in method arguments\n2. Specify project ID in configuration\n3. Discover project ID in environment variables\n4. Discover GCP project ID\n5. Discover project ID in credentials JSON\n\n**Credentials** are discovered in the following order:\n\n1. Specify credentials in method arguments\n2. Specify credentials in configuration\n3. Discover credentials path in environment variables\n4. Discover credentials JSON in environment variables\n5. Discover credentials file in the Cloud SDK's path\n6. Discover GCP credentials\n\n### Google Cloud Platform environments\n\nWhen running on Google Cloud Platform (GCP), including Google Compute Engine (GCE),\nGoogle Kubernetes Engine (GKE), Google App Engine (GAE), Google Cloud Functions\n(GCF) and Cloud Run, the **Project ID** and **Credentials** and are discovered\nautomatically. Code should be written as if already authenticated.\n\n### Environment Variables\n\nThe **Project ID** and **Credentials JSON** can be placed in environment\nvariables instead of declaring them directly in code. Each service has its own\nenvironment variable, allowing for different service accounts to be used for\ndifferent services. (See the READMEs for the individual service gems for\ndetails.) The path to the **Credentials JSON** file can be stored in the\nenvironment variable, or the **Credentials JSON** itself can be stored for\nenvironments such as Docker containers where writing files is difficult or not\nencouraged.\n\nThe environment variables that google-cloud-webrisk checks for project ID are:\n\n1. `WEBRISK_PROJECT`\n2. `GOOGLE_CLOUD_PROJECT`\n\nThe environment variables that google-cloud-webrisk checks for credentials are configured on [Google::Cloud::Webrisk::V1beta1::Credentials](/ruby/docs/reference/google-cloud-webrisk/latest/Google-Cloud-Webrisk-V1beta1-Credentials \"Google::Cloud::Webrisk::V1beta1::Credentials (class)\"):\n\n1. `WEBRISK_CREDENTIALS` - Path to JSON file, or JSON contents\n2. `WEBRISK_KEYFILE` - Path to JSON file, or JSON contents\n3. `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents\n4. `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents\n5. `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file\n\n```ruby\nrequire \"google/cloud/webrisk\"\n\nENV[\"WEBRISK_PROJECT\"] = \"my-project-id\"\nENV[\"WEBRISK_CREDENTIALS\"] = \"path/to/keyfile.json\"\n\nclient = Google::Cloud::Webrisk.new\n```\n\n### Configuration\n\nThe **Project ID** and the path to the **Credentials JSON** file can be configured\ninstead of placing them in environment variables or providing them as arguments. \n\n```ruby\nrequire \"google/cloud/webrisk\"\n\nGoogle::Cloud::Webrisk.configure do |config|\n config.project_id = \"my-project-id\"\n config.credentials = \"path/to/keyfile.json\"\nend\n\nclient = Google::Cloud::Webrisk.new\n```\n\n### Cloud SDK\n\nThis option allows for an easy way to authenticate during development. If\ncredentials are not provided in code or in environment variables, then Cloud SDK\ncredentials are discovered.\n\nTo configure your system for this, simply:\n\n1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)\n2. Authenticate using OAuth 2.0 `$ gcloud auth login`\n3. Write code as if already authenticated.\n\n**NOTE:** This is *not* recommended for running in production. The Cloud SDK\n*should* only be used during development.\n\nCreating a Service Account\n--------------------------\n\nGoogle Cloud requires a **Project ID** and **Service Account Credentials** to\nconnect to the APIs. You will use the **Project ID** and **JSON key file** to\nconnect to most services with google-cloud-webrisk.\n\nIf you are not running this client within [Google Cloud Platform\nenvironments](#google-cloud-platform-environments), you need a Google\nDevelopers service account.\n\n1. Visit the [Google Developers Console](https://console.cloud.google.com/project).\n2. Create a new project or click on an existing project.\n3. Activate the slide-out navigation tray and select **API Manager**. From\n here, you will enable the APIs that your application requires.\n\n *Note: You may need to enable billing in order to use these services.*\n4. Select **Credentials** from the side navigation.\n\n You should see a screen like one of the following.\n\n Find the \"Add credentials\" drop down and select \"Service account\" to be\n guided through downloading a new JSON key file.\n\n If you want to re-use an existing service account, you can easily generate a\n new key file. Just select the account you wish to re-use, and click \"Generate\n new JSON key\":\n\n The key file you download will be used by this library to authenticate API\n requests and should be stored in a secure location."]]