如果您需要通过代理连接到 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
作为代理。
或者,您可以通过编程方式配置代理设置,
任何其他配置设置:
$googleAdsClient = (new GoogleAdsClientBuilder())
...
->withProxy('protocol://user:pass@host:port')
->build();