Proxy

如果您需要透過 Proxy 連至 Google Ads API,可以到 請在網站的 CONNECTION 區段中設定 proxy 屬性 google_ads_php.ini敬上 檔案:

[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"

舉例來說,您可以將 http://user:pass@localhost:8082 指定為 Proxy。 此外,您也可以透過程式化 Proxy 設定,就像 其他配置設定:

$googleAdsClient = (new GoogleAdsClientBuilder())
    ...
    ->withProxy('protocol://user:pass@host:port')
    ->build();