如果您需要通过代理连接到 Google Ads API,可通过设置
http_proxy
配置
google-ads.yaml
文件:
# 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
作为代理。
或者,您可以使用
GoogleAdsClient
方法:load_from_dict
、load_from_env
和
load_from_string
,就像其他任何配置设置一样。例如:
config = {
...
"http_proxy": "INSERT_PROXY_HERE",
}
googleads_client = GoogleAdsClient.load_from_dict(config)
如需将代理与 load_from_env
方法搭配使用,请设置 GOOGLE_ADS_HTTP_PROXY
环境变量。