সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
আপনি যদি প্রক্সির মাধ্যমে 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"]],["2024-11-10 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."]]],[]]