In general, the Google Cloud PHP library uses Service Account credentials to connect to Google Cloud services. When running on Compute Engine 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.
General instructions, environment variables, and configuration options are covered in the general Authentication guide for the google-cloud
umbrella package. Specific instructions and environment variables for each individual service are linked from the README documents listed below for each service.
Google Cloud requires a Project ID and Service Account Credentials to connect to the APIs. For detailed instructions on how to create a service account, see the Authentication guide.
You will use the Project ID and JSON key file to connect to most services with Google Cloud PHP.
The Google Cloud PHP library aims to make authentication as simple as possible, and provides several mechanisms to configure your system without providing Project ID and Service Account Credentials directly in code.
Project ID is discovered in the following order:
- Specify project ID in code
- Discover project ID in environment variables
- Discover GCE project ID
Credentials are discovered in the following order:
- Specify credentials in code
- Discover credentials path in environment variables
- Discover credentials file in the Cloud SDK's path
- Discover GCE credentials
While running on Google Cloud Platform environments such as Google Compute Engine, Google App Engine and Google Kubernetes Engine, no extra work is needed. The Project ID and Credentials and are discovered automatically. Code should be written as if already authenticated.
The Project ID and Credentials JSON can be placed in environment variables instead of declaring them directly in code.
Here are the environment variables that Google Cloud PHP checks for project ID:
GOOGLE_CLOUD_PROJECT
GCLOUD_PROJECT
(deprecated)
Here are the environment variables that Google Cloud PHP checks for credentials:
GOOGLE_APPLICATION_CREDENTIALS
- Path to JSON file
Each Google Cloud PHP client may be authenticated in code when creating a client library instance.
require 'vendor/autoload.php';
use Google\Cloud\Storage\StorageClient;
// Authenticating with keyfile data.
$storage = new StorageClient([
'keyFile' => json_decode(file_get_contents('/path/to/keyfile.json'), true)
]);
// Authenticating with a keyfile path.
$storage = new StorageClient([
'keyFilePath' => '/path/to/keyfile.json'
]);
// Providing the Google Cloud project ID.
$storage = new StorageClient([
'projectId' => 'myProject'
]);
Generated clients use a slightly different method to provide authentication in code.
require 'vendor/autoload.php';
use Google\Cloud\VideoIntelligence\V1\VideoIntelligenceServiceClient;
// Authenticating with keyfile data.
$video = new VideoIntelligenceServiceClient([
'credentials' => json_decode(file_get_contents('/path/to/keyfile.json'), true)
]);
// Authenticating with a keyfile path.
$video = new VideoIntelligenceServiceClient([
'credentials' => '/path/to/keyfile.json'
]);
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:
- Download and install the Cloud SDK
- Authenticate using OAuth 2.0
$ gcloud auth login
- Write code as if already authenticated.
NOTE: This is not recommended for running in production. The Cloud SDK should only be used during development.
If you're having trouble authenticating open a Github Issue to get help. Also consider searching or asking questions on StackOverflow.