קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
אם יש לך צורך להתחבר ל-Google Ads API באמצעות שרת proxy, אפשר לעשות זאת כך:
הגדרה של המאפיין proxy בקטע CONNECTION של
google_ads_php.ini
file:
[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"
לדוגמה, אפשר להגדיר את http://user:pass@localhost:8082 בתור שרת proxy.
לחלופין, אפשר לקבוע את הגדרת שרת ה-proxy באופן פרוגרמטי, בדיוק כמו
כל הגדרת תצורה אחרת:
$googleAdsClient = (new GoogleAdsClientBuilder()) ... ->withProxy('protocol://user:pass@host:port') ->build();
[[["התוכן קל להבנה","easyToUnderstand","thumb-up"],["התוכן עזר לי לפתור בעיה","solvedMyProblem","thumb-up"],["סיבה אחרת","otherUp","thumb-up"]],[["חסרים לי מידע או פרטים","missingTheInformationINeed","thumb-down"],["התוכן מורכב מדי או עם יותר מדי שלבים","tooComplicatedTooManySteps","thumb-down"],["התוכן לא עדכני","outOfDate","thumb-down"],["בעיה בתרגום","translationIssue","thumb-down"],["בעיה בדוגמאות/בקוד","samplesCodeIssue","thumb-down"],["סיבה אחרת","otherDown","thumb-down"]],["עדכון אחרון: 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."]]],[]]