אם צריך להתחבר ל-Google Ads API באמצעות שרת proxy, אפשר לעשות זאת באמצעות הגדרה
ההגדרה http_proxy
google-ads.yaml
file:
# Proxy configuration
###############################################################################
# Below you can specify an optional proxy configuration to be used by #
# requests. If you don't have username and password, just specify host and #
# port. #
# #############################################################################
http_proxy: INSERT_PROXY_HERE
לדוגמה, אפשר להגדיר את http://user:pass@localhost:8082
בתור שרת proxy.
לחלופין, אפשר לקבוע את הגדרת שרת ה-proxy באופן פרוגרמטי באמצעות
GoogleAdsClient
אמצעי תשלום: load_from_dict
, load_from_env
ו
load_from_string
, בדיוק כמו כל הגדרת תצורה אחרת. לדוגמה:
config = {
...
"http_proxy": "INSERT_PROXY_HERE",
}
googleads_client = GoogleAdsClient.load_from_dict(config)
כדי להשתמש בשרת proxy עם ה-method load_from_env
, צריך להגדיר את GOOGLE_ADS_HTTP_PROXY
במשתנה הסביבה.