क्या आपको Google Ads API के बारे में सुझाव/राय देनी है या शिकायत करनी है? उपयोगकर्ताओं पर की जाने वाली रिसर्च में हिस्सा लेने का न्योता पाने के लिए, साइन अप करें!
bookmark_borderbookmark
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
अगर आपको प्रॉक्सी की मदद से Google Ads API से कनेक्ट करना है, तो अपनी google_ads_php.ini फ़ाइल के CONNECTION सेक्शन में proxy प्रॉपर्टी सेट करें:
[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 को प्रॉक्सी के तौर पर सेट किया जा सकता है.
इसके अलावा, किसी भी अन्य कॉन्फ़िगरेशन सेटिंग की तरह ही, प्रोग्राम के हिसाब से प्रॉक्सी सेटिंग को कॉन्फ़िगर किया जा सकता है:
$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"]],["आखिरी बार 2025-03-29 (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."]]],[]]