שרת Proxy

אם יש לך צורך להתחבר ל-Google Ads API באמצעות שרת proxy, אפשר לעשות זאת כך: הגדרה של המאפיין proxy בקטע CONNECTION של google_ads_php.ini file:

[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();