אם יש לך צורך להתחבר ל-Google Ads API באמצעות שרת proxy, אפשר לעשות זאת כך:
הגדרה של המאפיין proxy
בקטע Network Connection
של
googleads.properties
file:
### Network Connection ###
# Optional proxy server URL to be used for internet connectivity.
# If your proxy connection requires authentication, make sure to include it in
# the URL, for example: http://user:password@proxy_hostname:8080
proxy=INSERT_PROXY_HERE
לדוגמה, אפשר להגדיר את http://user:pass@localhost:8082
בתור שרת proxy.
לחלופין, אפשר לקבוע את הגדרת שרת ה-proxy באופן פרוגרמטי, בדיוק כמו
כל הגדרת תצורה אחרת:
my $api_client = Google::Ads::GoogleAds::GoogleAdsClient->new({
proxy => "INSERT_PROXY_HERE"
});