forked from googleads/google-ads-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
google_ads_php.ini
67 lines (55 loc) · 3.02 KB
/
google_ads_php.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[GOOGLE_ADS]
; Required some config parameters, which can be found at:
; https://developers.google.com/google-ads/api/docs/first-call/overview#config
developerToken = "INSERT_DEVELOPER_TOKEN_HERE"
; The configuration setting name for a flag that specifies whether to use the Google
; Cloud Organization of your Google Cloud project instead of developer token to
; determine your Google Ads API access levels.
; useCloudOrgForApiAccess = false
; Required for manager accounts only: Specify the login customer ID used to authenticate API calls.
; This will be the customer ID of the authenticated manager account. You can also specify this later
; in code if your application uses multiple manager account + OAuth pairs. It should be set
; without dashes, for example: 1234567890 instead of 123-456-7890.
; loginCustomerId = "INSERT_LOGIN_CUSTOMER_ID_HERE"
; This header is only required for methods that update the resources of an entity when permissioned
; via Linked Accounts in the Google Ads UI (AccountLink resource in the Google Ads API). Set this
; value to the customer ID of the data provider that updates the resources of the specified
; customer ID. It should be set without dashes, for example: 1234567890 instead of 123-456-7890.
; Read https://support.google.com/google-ads/answer/7365001 to learn more about Linked Accounts.
; linkedCustomerId = "INSERT_LINKED_CUSTOMER_ID_HERE"
; Optional additional settings.
; endpoint = "https://googleads.googleapis.com/"
[OAUTH2]
; Required OAuth2 credentials. Uncomment and fill in the values for the
; appropriate flow based on your use case.
; For installed application flow.
clientId = "INSERT_OAUTH2_CLIENT_ID_HERE"
clientSecret = "INSERT_OAUTH2_CLIENT_SECRET_HERE"
refreshToken = "INSERT_OAUTH2_REFRESH_TOKEN_HERE"
; For service account flow.
; jsonKeyFilePath = "INSERT_ABSOLUTE_PATH_TO_OAUTH2_JSON_KEY_FILE_HERE"
; scopes = "https://www.googleapis.com/auth/adwords"
; impersonatedEmail = "INSERT_EMAIL_OF_ACCOUNT_TO_IMPERSONATE_HERE"
[LOGGING]
; Optional logging settings.
; logFilePath = "path/to/your/file.log"
; logLevel = "INFO"
[CONNECTION]
; Optional proxy settings to be used by requests.
; If you don't have username and password, just specify host and port.
; proxy = "protocol://user:pass@host:port"
; Optional transport settings.
; By default, "grpc" is used if available otherwise "rest".
; transport = "grpc"
; Optional gRPC channel settings.
; Whether the gRPC channel to use is secure or not. Insecure gRPC channels should not be used in
; production because they do not use encryption or authentication, they should only be used for
; testing. By default, it is set to true (secure).
; grpcChannelIsSecure = true
[GAPIC]
; Optional GAPIC (Generated API Client) generator settings.
; Whether this library should use the new version of GAPIC generated source code (GAPIC v2).
; GAPIC v2 is the preparation for supporting more advanced features in the future.
; For now, GAPIC v2 source code has the same functionality as the existing source code.
; By default, it is set to false.
; useGapicV2Source = false