Proxy

Nếu cần kết nối với API Google Ads thông qua proxy, bạn có thể thực hiện bằng cách đặt thuộc tính proxy trong phần CONNECTION của google_ads_php.ini tệp:

[CONNECTION]
; Optional proxy settings to be used by requests.
; If you don't have username and password, just specify host and port.
proxy = "protocol://user:pass@host:port"

Ví dụ: bạn có thể chỉ định http://user:pass@localhost:8082 làm proxy. Ngoài ra, bạn có thể định cấu hình cài đặt proxy theo phương thức lập trình giống như bất kỳ chế độ cài đặt cấu hình nào khác:

$googleAdsClient = (new GoogleAdsClientBuilder())
    ...
    ->withProxy('protocol://user:pass@host:port')
    ->build();