プロキシ経由で 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
を設定します。
使用します。