프록시를 통해 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
를 프록시로 지정할 수 있습니다.
또는 다음과 같이 프로그래매틱 방식으로 프록시 설정을 구성할 수 있습니다.
다른 구성 설정:
my $api_client = Google::Ads::GoogleAds::GoogleAdsClient->new({
proxy => "INSERT_PROXY_HERE"
});