如果您需要透過 Proxy 連至 Google Ads API,可以到
請在網站的 Network Connection
區段中設定 proxy
屬性
googleads.properties
敬上
檔案:
### Network Connection ###
# Optional proxy server URL to be used for internet connectivity.
# If your proxy connection requires authentication, make sure to include it in
# the URL, for example: http://user:password@proxy_hostname:8080
proxy=INSERT_PROXY_HERE
舉例來說,您可以將 http://user:pass@localhost:8082
指定為 Proxy。
此外,您也可以透過程式化 Proxy 設定,就像
其他配置設定:
my $api_client = Google::Ads::GoogleAds::GoogleAdsClient->new({
proxy => "INSERT_PROXY_HERE"
});