Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Wenn Sie über einen Proxy eine Verbindung zur Google Ads API herstellen müssen, führen Sie folgende Schritte aus:
Festlegen des Attributs proxy im Abschnitt CONNECTION Ihres
google_ads_php.ini
Datei:
[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"
Beispielsweise können Sie http://user:pass@localhost:8082 als Proxy angeben.
Alternativ können Sie die Proxy-Einstellung wie
jede andere Konfigurationseinstellung:
$googleAdsClient = (new GoogleAdsClientBuilder()) ... ->withProxy('protocol://user:pass@host:port') ->build();
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Benötigte Informationen nicht gefunden","missingTheInformationINeed","thumb-down"],["Zu umständlich/zu viele Schritte","tooComplicatedTooManySteps","thumb-down"],["Nicht mehr aktuell","outOfDate","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Problem mit Beispielen/Code","samplesCodeIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 2024-08-20 (UTC)."],[[["The Google Ads API can be accessed through a proxy by configuring the `proxy` property in the `google_ads_php.ini` file or programmatically using the `withProxy()` method."],["The proxy configuration should follow the format `protocol://user:pass@host:port`, where username and password are optional if not required by the proxy server."]]],[]]