The Google Ads API PHP client library provides several configuration settings that you can use to customize the library behavior.
Configuration file
You can store most of these configuration settings in
ini
files and use them when instantiating clients, for example,
google_ads_php.ini
.
The credential and client builders both provide fromFile
methods to load
settings from such files:
$oAuth2Credential = (new OAuth2TokenBuilder())
->fromFile('/path/to/google_ads_php.ini')
->build();
$googleAdsClient = (new GoogleAdsClientBuilder())
->fromFile('/path/to/google_ads_php.ini')
->withOAuth2Credential($oAuth2Credential)
->build();
If there is no configuration path provided as argument, the fromFile
methods load from the default configuration path which is:
- The value of the environment variable named
GOOGLE_ADS_CONFIGURATION_FILE_PATH
if set. - Otherwise, the
google_ads_php.ini
file in yourHOME
directory.
$oAuth2Credential = (new OAuth2TokenBuilder())
->fromFile()
->build();
$googleAdsClient = (new GoogleAdsClientBuilder())
->fromFile()
->withOAuth2Credential($oAuth2Credential)
->build();
Dynamic configuration
You can set these configuration settings dynamically when instantiating clients.
$oAuth2Credential = (new OAuth2TokenBuilder())
->withClientId('INSERT_CLIENT_ID')
// ...
->build();
$googleAdsClient = (new GoogleAdsClientBuilder())
->withOAuth2Credential($oAuth2Credential)
->withDeveloperToken('INSERT_DEVELOPER_TOKEN_HERE')
// ...
->build();
Configuration environment variables
You can set some of the configuration settings from environment variables when instantiating clients (see the exhaustive list).
The credential and client builders both provide fromEnvironmentVariables
methods to load settings from environment variables:
$oAuth2Credential = (new OAuth2TokenBuilder())
// ...
->fromEnvironmentVariables()
->build();
$googleAdsClient = (new GoogleAdsClientBuilder())
->withOAuth2Credential($oAuth2Credential)
// ...
->fromEnvironmentVariables()
->build();
Configuration fields
The configuration settings support several fields organized in categories.
- Fields used by
OAuth2TokenBuilder
:- Application Mode
[OAUTH2] clientId
: Your OAuth2 client ID.[OAUTH2] clientSecret
: Your OAuth2 client secret.[OAUTH2] refreshToken
: Your OAuth2 refresh token.
- Service Account Mode
[OAUTH2] jsonKeyFilePath
: The Json key file path.[OAUTH2] scopes
: The scopes.[OAUTH2] impersonatedEmail
: The email to impersonate.
- Application Mode
- Fields used by
GoogleAdsClientBuilder
:[GOOGLE_ADS] developerToken
: Your developer token for accessing the API.[GOOGLE_ADS] loginCustomerId
: The ID of the authorized customer to use in the request.[GOOGLE_ADS] linkedCustomerId
: The linked customer ID.[LOGGING] logFilePath
: The file path for logging.[LOGGING] logLevel
: The logging level.[CONNECTION] proxy
: The proxy server URL used for internet connectivity.[CONNECTION] transport
: The transport.[CONNECTION] grpcChannelIsSecure
: Whether the gRPC channel is secure or not.[CONNECTION] grpcChannelCredential
: The gRPC channel credentials.[CONNECTION] unaryMiddlewares
: The unary middlewares.[CONNECTION] streamingMiddlewares
: The streaming middlewares.[CONNECTION] grpcInterceptors
: The gRPC interceptors.
Configuration validation
The configuration settings are checked when instantiating clients and exceptions are thrown when invalid. Here are the rules:
[OAUTH2]
fields must not be set for both Application Mode and Service Account Mode at the same time.[OAUTH2] jsonKeyFilePath
and[OAUTH2] scopes
must be set when using the Service Account Mode.[OAUTH2] clientId
,[OAUTH2] clientSecret
and[OAUTH2] refreshToken
must be set when using the Application Mode.[GOOGLE_ADS] developerToken
must always be set.- If set,
[GOOGLE_ADS] loginCustomerId
and[GOOGLE_ADS] linkedCustomerId
must be positive numbers. - If set,
[CONNECTION] proxy
must be a valid URL (see filter FILTER_VALIDATE_URL). - If set,
[LOGGING] logLevel
must be a valid PSR log level in capital-letters, such asINFO
. - If set,
[CONNECTION] transport
must be eithergrpc
orrest
. - If
[CONNECTION] transport
is set togrpc
, the gRPC transport must be supported by the environment (see guide transport). [CONNECTION] grpcChannelIsSecure
must betrue
when[CONNECTION] transport
is not set togrpc
.[CONNECTION] grpcChannelCredential
can only be set when[CONNECTION] transport
is set togrpc
.[CONNECTION] grpcChannelCredential
can only be set when[CONNECTION] grpcChannelIsSecure
istrue
.