プロキシ経由で 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();