Wenn Sie über einen Proxy eine Verbindung zur Google Ads API herstellen müssen, legen Sie
die Konfiguration http_proxy
in Ihrem
google-ads.yaml
Datei:
# 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
Beispielsweise können Sie http://user:pass@localhost:8082
als Proxy angeben.
Alternativ können Sie die Proxy-Einstellung programmatisch mithilfe der
GoogleAdsClient
-Methoden: load_from_dict
, load_from_env
und
load_from_string
, genau wie bei jeder anderen Konfigurationseinstellung. Beispiel:
config = {
...
"http_proxy": "INSERT_PROXY_HERE",
}
googleads_client = GoogleAdsClient.load_from_dict(config)
Wenn Sie einen Proxy mit der Methode load_from_env
verwenden möchten, legen Sie den GOOGLE_ADS_HTTP_PROXY
fest.
Umgebungsvariable ein.