如需透過 Proxy 連結至 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
指定為 Proxy。
或者,您也可以使用
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
方法使用 Proxy,請設定 GOOGLE_ADS_HTTP_PROXY
環境變數