পূর্বশর্ত
কাস্টম ইভেন্ট সেটআপ সম্পূর্ণ করুন।
একটি নেটিভ বিজ্ঞাপন অনুরোধ
কাস্টম ইভেন্ট লাইন আইটেম জলপ্রপাত মধ্যস্থতা শৃঙ্খলে পৌঁছে গেলে, loadNativeAd:adConfiguration:completionHandler:
পদ্ধতিটি একটি কাস্টম ইভেন্ট তৈরি করার সময় আপনার দেওয়া ক্লাসের নামে ডাকা হয়। এই ক্ষেত্রে, সেই পদ্ধতিটি SampleCustomEvent
এ রয়েছে, যেটি তখন SampleCustomEventNative
এ loadNativeAd:adConfiguration:completionHandler:
পদ্ধতিটিকে কল করে।
একটি নেটিভ বিজ্ঞাপনের অনুরোধ করতে, একটি ক্লাস তৈরি বা সংশোধন করুন যা GADMediationAdapter
এবং loadNativeAd:adConfiguration:completionHandler:
প্রয়োগ করে। যদি GADMediationAdapter
প্রসারিত করে এমন একটি ক্লাস ইতিমধ্যেই বিদ্যমান থাকে, loadNativeAd:adConfiguration:completionHandler:
সেখানে প্রয়োগ করুন। উপরন্তু, GADMediationNativeAd
বাস্তবায়নের জন্য একটি নতুন ক্লাস তৈরি করুন।
আমাদের কাস্টম ইভেন্ট উদাহরণে, SampleCustomEvent
GADMediationAdapter
ইন্টারফেস প্রয়োগ করে এবং তারপর SampleCustomEventNative
এ প্রতিনিধি করে।
সুইফট
import GoogleMobileAds class SampleCustomEvent: NSObject, GADMediationAdapter { fileprivate var nativeAd: SampleCustomEventNativeAd? func loadNativeAd( for adConfiguration: GADMediationNativeAdConfiguration, completionHandler: @escaping GADMediationNativeAdLoadCompletionHandler ) { self.nativeAd = SampleCustomEventNativeAd() self.nativeAd?.loadNativeAd( for: adConfiguration, completionHandler: completionHandler) } }
উদ্দেশ্য-C
#import "SampleCustomEvent.h" @implementation SampleCustomEvent SampleCustomEventNativeAd *sampleNativeAd; - (void)loadNativeAdForAdConfiguration: (GADMediationNativeAdConfiguration *)adConfiguration completionHandler: (GADMediationNativeAdLoadCompletionHandler) completionHandler { sampleNative = [[SampleCustomEventNativeAd alloc] init]; [sampleNative loadNativeAdForAdConfiguration:adConfiguration completionHandler:completionHandler]; }
SampleCustomEventNative` নিম্নলিখিত কাজের জন্য দায়ী:
নেটিভ বিজ্ঞাপন লোড হচ্ছে
GADMediationNativeAd
প্রোটোকল বাস্তবায়ন করা।Google মোবাইল বিজ্ঞাপন SDK-এ বিজ্ঞাপন ইভেন্ট কলব্যাক গ্রহণ এবং প্রতিবেদন করা
অ্যাড ম্যানেজার UI-তে সংজ্ঞায়িত ঐচ্ছিক প্যারামিটার বিজ্ঞাপন কনফিগারেশনে অন্তর্ভুক্ত করা হয়েছে। প্যারামিটারটি adConfiguration.credentials.settings[@"parameter"]
এর মাধ্যমে অ্যাক্সেস করা যেতে পারে। এই প্যারামিটারটি সাধারণত একটি বিজ্ঞাপন ইউনিট শনাক্তকারী যা একটি বিজ্ঞাপন অবজেক্ট ইনস্ট্যান্ট করার সময় একটি বিজ্ঞাপন নেটওয়ার্ক SDK-এর প্রয়োজন হয়।
সুইফট
class SampleCustomEventNativeAd: NSObject, GADMediationNativeAd { /// The Sample Ad Network native ad. var nativeAd: SampleNativeAd? /// The ad event delegate to forward ad rendering events to the Google Mobile /// Ads SDK. var delegate: GADMediationNativeAdEventDelegate? /// Completion handler called after ad load var completionHandler: GADMediationNativeLoadCompletionHandler? func loadNativeAd( for adConfiguration: GADMediationNativeAdConfiguration, completionHandler: @escaping GADMediationNativeLoadCompletionHandler ) { let adLoader = SampleNativeAdLoader() let sampleRequest = SampleNativeAdRequest() // The Google Mobile Ads SDK requires the image assets to be downloaded // automatically unless the publisher specifies otherwise by using the // GADNativeAdImageAdLoaderOptions object's disableImageLoading property. If // your network doesn't have an option like this and instead only ever // returns URLs for images (rather than the images themselves), your adapter // should download image assets on behalf of the publisher. This should be // done after receiving the native ad object from your network's SDK, and // before calling the connector's adapter:didReceiveMediatedNativeAd: method. sampleRequest.shouldDownloadImages = true sampleRequest.preferredImageOrientation = NativeAdImageOrientation.any sampleRequest.shouldRequestMultipleImages = false let options = adConfiguration.options for loaderOptions: GADAdLoaderOptions in options { if let imageOptions = loaderOptions as? GADNativeAdImageAdLoaderOptions { sampleRequest.shouldRequestMultipleImages = imageOptions.shouldRequestMultipleImages // If the GADNativeAdImageAdLoaderOptions' disableImageLoading property is // YES, the adapter should send just the URLs for the images. sampleRequest.shouldDownloadImages = !imageOptions.disableImageLoading } else if let mediaOptions = loaderOptions as? GADNativeAdMediaAdLoaderOptions { switch mediaOptions.mediaAspectRatio { case GADMediaAspectRatio.landscape: sampleRequest.preferredImageOrientation = NativeAdImageOrientation.landscape case GADMediaAspectRatio.portrait: sampleRequest.preferredImageOrientation = NativeAdImageOrientation.portrait default: sampleRequest.preferredImageOrientation = NativeAdImageOrientation.any } } } // This custom event uses the server parameter to carry an ad unit ID, which // is the most common use case. adLoader.delegate = self adLoader.adUnitID = adConfiguration.credentials.settings["parameter"] as? String self.completionHandler = completionHandler adLoader.fetchAd(sampleRequest) } }
উদ্দেশ্য-C
#import "SampleCustomEventNativeAd.h" @interface SampleCustomEventNativeAd () <SampleNativeAdDelegate, GADMediationNativeAd> { /// The sample native ad. SampleNativeAd *_nativeAd; /// The completion handler to call when the ad loading succeeds or fails. GADMediationNativeLoadCompletionHandler _loadCompletionHandler; /// The ad event delegate to forward ad rendering events to the Google Mobile /// Ads SDK. id<GADMediationNativeAdEventDelegate> _adEventDelegate; } @end - (void)loadNativeAdForAdConfiguration: (GADMediationNativeAdConfiguration *)adConfiguration completionHandler:(GADMediationNativeLoadCompletionHandler) completionHandler { __block atomic_flag completionHandlerCalled = ATOMIC_FLAG_INIT; __block GADMediationNativeLoadCompletionHandler originalCompletionHandler = [completionHandler copy]; _loadCompletionHandler = ^id<GADMediationNativeAdEventDelegate>( _Nullable id<GADMediationNativeAd> ad, NSError *_Nullable error) { // Only allow completion handler to be called once. if (atomic_flag_test_and_set(&completionHandlerCalled)) { return nil; } id<GADMediationNativeAdEventDelegate> delegate = nil; if (originalCompletionHandler) { // Call original handler and hold on to its return value. delegate = originalCompletionHandler(ad, error); } // Release reference to handler. Objects retained by the handler will also // be released. originalCompletionHandler = nil; return delegate; }; SampleNativeAdLoader *adLoader = [[SampleNativeAdLoader alloc] init]; SampleNativeAdRequest *sampleRequest = [[SampleNativeAdRequest alloc] init]; // The Google Mobile Ads SDK requires the image assets to be downloaded // automatically unless the publisher specifies otherwise by using the // GADNativeAdImageAdLoaderOptions object's disableImageLoading property. If // your network doesn't have an option like this and instead only ever returns // URLs for images (rather than the images themselves), your adapter should // download image assets on behalf of the publisher. This should be done after // receiving the native ad object from your network's SDK, and before calling // the connector's adapter:didReceiveMediatedNativeAd: method. sampleRequest.shouldDownloadImages = YES; sampleRequest.preferredImageOrientation = NativeAdImageOrientationAny; sampleRequest.shouldRequestMultipleImages = NO; sampleRequest.testMode = adConfiguration.isTestRequest; for (GADAdLoaderOptions *loaderOptions in adConfiguration.options) { if ([loaderOptions isKindOfClass:[GADNativeAdImageAdLoaderOptions class]]) { GADNativeAdImageAdLoaderOptions *imageOptions = (GADNativeAdImageAdLoaderOptions *)loaderOptions; sampleRequest.shouldRequestMultipleImages = imageOptions.shouldRequestMultipleImages; // If the GADNativeAdImageAdLoaderOptions' disableImageLoading property is // YES, the adapter should send just the URLs for the images. sampleRequest.shouldDownloadImages = !imageOptions.disableImageLoading; } else if ([loaderOptions isKindOfClass:[GADNativeAdMediaAdLoaderOptions class]]) { GADNativeAdMediaAdLoaderOptions *mediaOptions = (GADNativeAdMediaAdLoaderOptions *)loaderOptions; switch (mediaOptions.mediaAspectRatio) { case GADMediaAspectRatioLandscape: sampleRequest.preferredImageOrientation = NativeAdImageOrientationLandscape; break; case GADMediaAspectRatioPortrait: sampleRequest.preferredImageOrientation = NativeAdImageOrientationPortrait; break; default: sampleRequest.preferredImageOrientation = NativeAdImageOrientationAny; break; } } else if ([loaderOptions isKindOfClass:[GADNativeAdViewAdOptions class]]) { _nativeAdViewAdOptions = (GADNativeAdViewAdOptions *)loaderOptions; } } // This custom event uses the server parameter to carry an ad unit ID, which // is the most common use case. NSString *adUnit = adConfiguration.credentials.settings[@"parameter"]; adLoader.adUnitID = adUnit; adLoader.delegate = self; [adLoader fetchAd:sampleRequest]; }
বিজ্ঞাপনটি সফলভাবে আনা হোক বা কোনো ত্রুটির সম্মুখীন হোক, আপনি GADMediationNativeAdLoadCompletionHandler
কল করবেন। সাফল্যের ক্ষেত্রে, ত্রুটির প্যারামিটারের জন্য একটি nil
মান সহ GADMediationNativeAd
প্রয়োগ করে এমন ক্লাসের মধ্য দিয়ে যান; ব্যর্থতার ক্ষেত্রে, আপনি যে ত্রুটির সম্মুখীন হয়েছেন তার মধ্য দিয়ে যান।
সাধারণত, এই পদ্ধতিগুলি আপনার অ্যাডাপ্টার প্রয়োগ করে তৃতীয় পক্ষের SDK থেকে কলব্যাকের ভিতরে প্রয়োগ করা হয়। এই উদাহরণের জন্য, নমুনা SDK-তে প্রাসঙ্গিক কলব্যাক সহ একটি SampleNativeAdDelegate
আছে:
সুইফট
func adLoader( _ adLoader: SampleNativeAdLoader, didReceive nativeAd: SampleNativeAd ) { extraAssets = [ SampleCustomEventConstantsSwift.awesomenessKey: nativeAd.degreeOfAwesomeness ?? "" ] if let image = nativeAd.image { images = [GADNativeAdImage(image: image)] } else { let imageUrl = URL(fileURLWithPath: nativeAd.imageURL) images = [GADNativeAdImage(url: imageUrl, scale: nativeAd.imageScale)] } if let mappedIcon = nativeAd.icon { icon = GADNativeAdImage(image: mappedIcon) } else { let iconURL = URL(fileURLWithPath: nativeAd.iconURL) icon = GADNativeAdImage(url: iconURL, scale: nativeAd.iconScale) } adChoicesView = SampleAdInfoView() self.nativeAd = nativeAd if let handler = completionHandler { delegate = handler(self, nil) } } func adLoader( _ adLoader: SampleNativeAdLoader, didFailToLoadAdWith errorCode: SampleErrorCode ) { let error = SampleCustomEventUtilsSwift.SampleCustomEventErrorWithCodeAndDescription( code: SampleCustomEventErrorCodeSwift .SampleCustomEventErrorAdLoadFailureCallback, description: "Sample SDK returned an ad load failure callback with error code: \(errorCode)" ) if let handler = completionHandler { delegate = handler(nil, error) } }
উদ্দেশ্য-C
- (void)adLoader:(SampleNativeAdLoader *)adLoader didReceiveNativeAd:(SampleNativeAd *)nativeAd { if (nativeAd.image) { _images = @[ [[GADNativeAdImage alloc] initWithImage:nativeAd.image] ]; } else { NSURL *imageURL = [[NSURL alloc] initFileURLWithPath:nativeAd.imageURL]; _images = @[ [[GADNativeAdImage alloc] initWithURL:imageURL scale:nativeAd.imageScale] ]; } if (nativeAd.icon) { _icon = [[GADNativeAdImage alloc] initWithImage:nativeAd.icon]; } else { NSURL *iconURL = [[NSURL alloc] initFileURLWithPath:nativeAd.iconURL]; _icon = [[GADNativeAdImage alloc] initWithURL:iconURL scale:nativeAd.iconScale]; } // The sample SDK provides an AdChoices view (SampleAdInfoView). If your SDK // provides image and click through URLs for its AdChoices icon instead of an // actual UIView, the adapter is responsible for downloading the icon image // and creating the AdChoices icon view. _adChoicesView = [[SampleAdInfoView alloc] init]; _nativeAd = nativeAd; _adEventDelegate = _loadCompletionHandler(self, nil); } - (void)adLoader:(SampleNativeAdLoader *)adLoader didFailToLoadAdWithErrorCode:(SampleErrorCode)errorCode { NSError *error = SampleCustomEventErrorWithCodeAndDescription( SampleCustomEventErrorAdLoadFailureCallback, [NSString stringWithFormat:@"Sample SDK returned an ad load failure " @"callback with error code: %@", errorCode]); _adEventDelegate = _loadCompletionHandler(nil, error); }
মানচিত্র নেটিভ বিজ্ঞাপন
নেটিভ বিজ্ঞাপনের জন্য বিভিন্ন SDK-এর নিজস্ব অনন্য ফর্ম্যাট রয়েছে। একটি "শিরোনাম" ক্ষেত্র ধারণ করে এমন বস্তু ফেরত দিতে পারে, উদাহরণস্বরূপ, অন্যটিতে "শিরোনাম" থাকতে পারে। উপরন্তু, ইমপ্রেশন ট্র্যাক করতে এবং ক্লিক প্রক্রিয়াকরণের জন্য ব্যবহৃত পদ্ধতিগুলি একটি SDK থেকে অন্যটিতে পরিবর্তিত হতে পারে।
এই সমস্যাগুলির সমাধান করার জন্য, যখন একটি কাস্টম ইভেন্ট তার মধ্যস্থতাকৃত SDK থেকে একটি নেটিভ বিজ্ঞাপন বস্তু গ্রহণ করে, তখন এটিকে একটি শ্রেণী ব্যবহার করা উচিত যা GADMediationNativeAd
প্রয়োগ করে, যেমন SampleCustomEventNativeAd
, মধ্যস্থতা করা SDK-এর নেটিভ বিজ্ঞাপন বস্তুকে "ম্যাপ" করতে যাতে এটি Google দ্বারা প্রত্যাশিত ইন্টারফেসের সাথে মেলে মোবাইল বিজ্ঞাপন SDK.
আমরা এখন SampleCustomEventNativeAd
এর বাস্তবায়নের বিশদটি ঘনিষ্ঠভাবে দেখি।
আপনার ম্যাপিং সংরক্ষণ করুন
GADMediationNativeAd
কিছু নির্দিষ্ট বৈশিষ্ট্য বাস্তবায়ন করবে বলে আশা করা হচ্ছে যা অন্যান্য SDK-এর বৈশিষ্ট্য থেকে ম্যাপ করা হয়েছে:
সুইফট
var nativeAd: SampleNativeAd? var headline: String? { return nativeAd?.headline } var images: [GADNativeAdImage]? var body: String? { return nativeAd?.body } var icon: GADNativeAdImage? var callToAction: String? { return nativeAd?.callToAction } var starRating: NSDecimalNumber? { return nativeAd?.starRating } var store: String? { return nativeAd?.store } var price: String? { return nativeAd?.price } var advertiser: String? { return nativeAd?.advertiser } var extraAssets: [String: Any]? { return [ SampleCustomEventConstantsSwift.awesomenessKey: nativeAd?.degreeOfAwesomeness ?? "" ] } var adChoicesView: UIView? var mediaView: UIView? { return nativeAd?.mediaView }
উদ্দেশ্য-C
/// Used to store the ad's images. In order to implement the /// GADMediationNativeAd protocol, we use this class to return the images /// property. NSArray<GADNativeAdImage *> *_images; /// Used to store the ad's icon. In order to implement the GADMediationNativeAd /// protocol, we use this class to return the icon property. GADNativeAdImage *_icon; /// Used to store the ad's ad choices view. In order to implement the /// GADMediationNativeAd protocol, we use this class to return the adChoicesView /// property. UIView *_adChoicesView; - (nullable NSString *)headline { return _nativeAd.headline; } - (nullable NSArray<GADNativeAdImage *> *)images { return _images; } - (nullable NSString *)body { return _nativeAd.body; } - (nullable GADNativeAdImage *)icon { return _icon; } - (nullable NSString *)callToAction { return _nativeAd.callToAction; } - (nullable NSDecimalNumber *)starRating { return _nativeAd.starRating; } - (nullable NSString *)store { return _nativeAd.store; } - (nullable NSString *)price { return _nativeAd.price; } - (nullable NSString *)advertiser { return _nativeAd.advertiser; } - (nullable NSDictionary<NSString *, id> *)extraAssets { return @{SampleCustomEventExtraKeyAwesomeness : _nativeAd.degreeOfAwesomeness}; } - (nullable UIView *)adChoicesView { return _adChoicesView; } - (nullable UIView *)mediaView { return _nativeAd.mediaView; } - (BOOL)hasVideoContent { return self.mediaView != nil; }
কিছু মধ্যস্থতাকারী নেটওয়ার্ক Google মোবাইল বিজ্ঞাপন SDK দ্বারা সংজ্ঞায়িত অতিরিক্ত সম্পদ প্রদান করতে পারে। GADMediationNativeAd
প্রোটোকলের মধ্যে extraAssets
নামে একটি পদ্ধতি রয়েছে যা Google Mobile Ads SDK আপনার ম্যাপার থেকে এই "অতিরিক্ত" সম্পদগুলির যেকোনো একটি পুনরুদ্ধার করতে ব্যবহার করে।
মানচিত্র ইমেজ সম্পদ
NSString
বা double
মতো সহজ ডেটা প্রকারের ম্যাপিংয়ের চেয়ে চিত্রের সম্পদের ম্যাপিং আরও জটিল। চিত্রগুলি স্বয়ংক্রিয়ভাবে ডাউনলোড করা যেতে পারে বা URL মান হিসাবে ফিরে আসতে পারে। তাদের পিক্সেল ঘনত্বও পরিবর্তিত হতে পারে।
এই বিবরণগুলি পরিচালনা করতে আপনাকে সাহায্য করার জন্য, Google মোবাইল বিজ্ঞাপন SDK GADNativeAdImage
ক্লাস প্রদান করে। চিত্র সম্পদের তথ্য (সেটি প্রকৃত UIImage
অবজেক্ট বা শুধু NSURL
মানই হোক না কেন) এই ক্লাস ব্যবহার করে Google মোবাইল বিজ্ঞাপন SDK-এ ফেরত দেওয়া উচিত।
এখানে ম্যাপার ক্লাস আইকন ইমেজ ধরে রাখতে একটি GADNativeAdImage
তৈরি কিভাবে পরিচালনা করে:
সুইফট
if let image = nativeAd.image { images = [GADNativeAdImage(image: image)] } else { let imageUrl = URL(fileURLWithPath: nativeAd.imageURL) images = [GADNativeAdImage(url: imageUrl, scale: nativeAd.imageScale)] }
উদ্দেশ্য-C
if (nativeAd.image) { _images = @[ [[GADNativeAdImage alloc] initWithImage:nativeAd.image] ]; } else { NSURL *imageURL = [[NSURL alloc] initFileURLWithPath:nativeAd.imageURL]; _images = @[ [[GADNativeAdImage alloc] initWithURL:imageURL scale:nativeAd.imageScale] ]; }
ইমপ্রেশন এবং ক্লিক ইভেন্ট
Google মোবাইল বিজ্ঞাপন SDK এবং মধ্যস্থতা করা SDK উভয়েরই জানতে হবে কখন কোন ইম্প্রেশন বা ক্লিক হয়, কিন্তু শুধুমাত্র একটি SDK এই ইভেন্টগুলিকে ট্র্যাক করতে হবে৷ মধ্যস্থতা করা SDK ট্র্যাকিং ইম্প্রেশন এবং নিজের ক্লিকগুলিকে সমর্থন করে কিনা তার উপর নির্ভর করে কাস্টম ইভেন্টগুলি ব্যবহার করতে পারে এমন দুটি ভিন্ন পদ্ধতি রয়েছে৷
Google মোবাইল বিজ্ঞাপন SDK-এর মাধ্যমে ক্লিক এবং ইম্প্রেশন ট্র্যাক করুন৷
যদি মধ্যস্থতা করা SDK তার নিজস্ব ইম্প্রেশন এবং ক্লিক ট্র্যাকিং না করে কিন্তু ক্লিক এবং ইম্প্রেশন রেকর্ড করার পদ্ধতি প্রদান করে, তাহলে Google Mobile Ads SDK এই ইভেন্টগুলি ট্র্যাক করতে এবং অ্যাডাপ্টারকে বিজ্ঞপ্তি দিতে পারে। GADMediationNativeAd
প্রোটোকল দুটি পদ্ধতি অন্তর্ভুক্ত করে: didRecordImpression:
এবং didRecordClickOnAssetWithName:view:viewController:
যে কাস্টম ইভেন্টগুলি মধ্যস্থিত নেটিভ বিজ্ঞাপন অবজেক্টে সংশ্লিষ্ট পদ্ধতিকে কল করার জন্য প্রয়োগ করতে পারে:
সুইফট
func didRecordImpression() { nativeAd?.recordImpression() } func didRecordClickOnAsset( withName assetName: GADUnifiedNativeAssetIdentifier, view: UIView, wController: UIViewController ) { nativeAd?.handleClick(on: view) }
উদ্দেশ্য-C
- (void)didRecordImpression { if (self.nativeAd) { [self.nativeAd recordImpression]; } } - (void)didRecordClickOnAssetWithName:(GADUnifiedNativeAssetIdentifier)assetName view:(UIView *)view viewController:(UIViewController *)viewController { if (self.nativeAd) { [self.nativeAd handleClickOnView:view]; } }
কারণ যে শ্রেণীটি GADMediationNativeAd
প্রোটোকল প্রয়োগ করে সে নমুনা SDK-এর নেটিভ অ্যাড অবজেক্টের একটি রেফারেন্স ধারণ করে, এটি একটি ক্লিক বা ইম্প্রেশন রিপোর্ট করার জন্য সেই বস্তুর উপযুক্ত পদ্ধতিতে কল করতে পারে। মনে রাখবেন didRecordClickOnAssetWithName:view:viewController:
পদ্ধতিটি একটি একক প্যারামিটার নেয়: View
অবজেক্টটি ক্লিক করা স্থানীয় বিজ্ঞাপন সম্পদের সাথে সম্পর্কিত।
মধ্যস্থতা করা SDK-এর মাধ্যমে ক্লিক এবং ইম্প্রেশন ট্র্যাক করুন
কিছু মধ্যস্থতাকারী SDK তাদের নিজস্ব ক্লিক এবং ইম্প্রেশন ট্র্যাক করতে পছন্দ করতে পারে। সেক্ষেত্রে, নীচের স্নিপেটে দেখানো হিসাবে আপনার handlesUserClicks
এবং handlesUserImpressions
পদ্ধতিগুলি প্রয়োগ করা উচিত। YES
ফেরত দিয়ে, আপনি ইঙ্গিত করেন যে কাস্টম ইভেন্ট এই ইভেন্টগুলি ট্র্যাক করার দায়িত্ব নেয় এবং এই ইভেন্টগুলি ঘটলে Google মোবাইল বিজ্ঞাপন SDK-কে অবহিত করবে৷
কাস্টম ইভেন্টগুলি যেগুলি ক্লিক এবং ইমপ্রেশন ট্র্যাকিংকে ওভাররাইড করে তারা didRenderInView:
মেসেজ ব্যবহার করে নেটিভ বিজ্ঞাপনের ভিউকে মধ্যস্থতাকৃত SDK-এর নেটিভ অ্যাড অবজেক্টে পাঠাতে পারে যাতে মধ্যস্থতা করা SDK কে প্রকৃত ট্র্যাকিং করতে দেয়৷ আমাদের কাস্টম ইভেন্ট উদাহরণ প্রকল্পের নমুনা SDK (যেখান থেকে এই গাইডের কোড স্নিপেটগুলি নেওয়া হয়েছে) এই পদ্ধতিটি ব্যবহার করে না' তবে যদি এটি করে থাকে, তাহলে কাস্টম ইভেন্ট কোডটি setNativeAdView:view:
পদ্ধতিকে কল করবে যা নীচের স্নিপেটে দেখানো হয়েছে :
সুইফট
func handlesUserClicks() -> Bool { return true } func handlesUserImpressions() -> Bool { return true } func didRender( in view: UIView, clickableAssetViews: [GADNativeAssetIdentifier: UIView], nonclickableAssetViews: [GADNativeAssetIdentifier: UIView], viewController: UIViewController ) { // This method is called when the native ad view is rendered. Here you would pass the UIView // back to the mediated network's SDK. self.nativeAd?.setNativeAdView(view) }
উদ্দেশ্য-C
- (BOOL)handlesUserClicks { return YES; } - (BOOL)handlesUserImpressions { return YES; } - (void)didRenderInView:(UIView *)view clickableAssetViews:(NSDictionary<GADNativeAssetIdentifier, UIView *> *) clickableAssetViews nonclickableAssetViews:(NSDictionary<GADNativeAssetIdentifier, UIView *> *) nonclickableAssetViews viewController:(UIViewController *)viewController { // This method is called when the native ad view is rendered. Here you would // pass the UIView back to the mediated network's SDK. Playing video using // SampleNativeAd's playVideo method [_nativeAd setNativeAdView:view]; }
মধ্যস্থতা ইভেন্টগুলি Google মোবাইল বিজ্ঞাপন SDK-এ ফরওয়ার্ড করুন
একবার আপনি একটি লোড করা বিজ্ঞাপনের সাথে GADMediationNativeLoadCompletionHandler
কল করলে, ফেরত আসা GADMediationNativeAdEventDelegate
প্রতিনিধি বস্তুটি অ্যাডাপ্টারের মাধ্যমে তৃতীয় পক্ষের SDK থেকে Google মোবাইল বিজ্ঞাপন SDK-তে উপস্থাপনা ইভেন্টগুলি ফরওয়ার্ড করতে ব্যবহার করা যেতে পারে৷
এটি গুরুত্বপূর্ণ যে আপনার কাস্টম ইভেন্ট যতটা সম্ভব এই কলব্যাকগুলিকে ফরোয়ার্ড করে, যাতে আপনার অ্যাপ Google মোবাইল বিজ্ঞাপন SDK থেকে এই সমতুল্য ইভেন্টগুলি পায়৷ এখানে কলব্যাক ব্যবহার করার একটি উদাহরণ:
এটি নেটিভ বিজ্ঞাপনের জন্য কাস্টম ইভেন্ট বাস্তবায়ন সম্পূর্ণ করে। সম্পূর্ণ উদাহরণ GitHub এ উপলব্ধ।