इंटरस्टीशियल विज्ञापनों के कस्टम इवेंट

ज़रूरी शर्तें

कस्टम इवेंट सेटअप पूरा करें.

इंटरस्टीशियल विज्ञापन का अनुरोध करना

जब वॉटरफ़ॉल मीडिएशन चेन में कस्टम इवेंट लाइन आइटम पर पहुंचा जाता है, तब loadInterstitialAd() तरीके को उस क्लास के नाम पर कॉल किया जाता है जिसे आपने कस्टम इवेंट बनाते समय दिया था. इस मामले में, वह तरीका SampleCustomEvent में है, जो SampleInterstitialCustomEventLoader में loadInterstitialAd() तरीके को कॉल करता है.

इंटरस्टीशियल विज्ञापन का अनुरोध करने के लिए, ऐसी क्लास बनाएं या उसमें बदलाव करें जो Adapter को लागू करने के लिए loadInterstitialAd() को बढ़ाती हो. इसके अलावा, MediationInterstitialAd को लागू करने के लिए एक नई क्लास बनाएं.

कस्टम इवेंट के उदाहरण में, SampleCustomEvent Adapter क्लास को एक्सटेंड़ करता है और फिर SampleInterstitialCustomEventLoader को डिलीगेट करता है.

Java

package com.google.ads.mediation.sample.customevent;

import com.google.android.gms.ads.mediation.Adapter;
import com.google.android.gms.ads.mediation.MediationAdConfiguration;
import com.google.android.gms.ads.mediation.MediationAdLoadCallback;
import com.google.android.gms.ads.mediation.MediationInterstitialAd;
import com.google.android.gms.ads.mediation.MediationInterstitialAdCallback;
...

public class SampleCustomEvent extends Adapter {
  private SampleInterstitialCustomEventLoader interstitialLoader;
  @Override
  public void loadInterstitialAd(
      @NonNull MediationInterstitialAdConfiguration adConfiguration,
      @NonNull
          MediationAdLoadCallback<MediationInterstitialAd, MediationInterstitialAdCallback>
              callback) {
    interstitialLoader = new SampleInterstitialCustomEventLoader(adConfiguration, callback);
    interstitialLoader.loadAd();
  }
}

SampleInterstitialCustomEventLoader इन टास्क के लिए ज़िम्मेदार है:

  • इंटरस्टीशियल विज्ञापन लोड करना और लोड होने के बाद, MediationAdLoadCallback तरीका शुरू करना.

  • MediationInterstitialAd इंटरफ़ेस को लागू करना.

  • Google Mobile Ads SDK को विज्ञापन इवेंट कॉलबैक पाने और उनकी रिपोर्टिंग करना

AdMob यूज़र इंटरफ़ेस में तय किया गया वैकल्पिक पैरामीटर, विज्ञापन कॉन्फ़िगरेशन में शामिल होता है. पैरामीटर को adConfiguration.getServerParameters().getString(MediationConfiguration.CUSTOM_EVENT_SERVER_PARAMETER_FIELD) के ज़रिए ऐक्सेस किया जा सकता है. आम तौर पर, यह पैरामीटर एक विज्ञापन यूनिट आइडेंटिफ़ायर होता है. विज्ञापन नेटवर्क SDK टूल को विज्ञापन ऑब्जेक्ट को इंस्टैंशिएट करते समय, इसकी ज़रूरत होती है.

Java

package com.google.ads.mediation.sample.customevent;

import com.google.android.gms.ads.mediation.Adapter;
import com.google.android.gms.ads.mediation.MediationInterstitialAdConfiguration;
import com.google.android.gms.ads.mediation.MediationAdLoadCallback;
import com.google.android.gms.ads.mediation.MediationInterstitialAd;
import com.google.android.gms.ads.mediation.MediationInterstitialAdCallback;
...

public class SampleInterstitialCustomEventLoader extends SampleAdListener
    implements MediationInterstitialAd {

  /** A sample third-party SDK interstitial ad. */
  private SampleInterstitial sampleInterstitialAd;

  /** Configuration for requesting the interstitial ad from the third-party network. */
  private final MediationInterstitialAdConfiguration mediationInterstitialAdConfiguration;

  /** Callback for interstitial ad events. */
  private MediationInterstitialAdCallback interstitialAdCallback;

  /** Callback that fires on loading success or failure. */
  private final MediationAdLoadCallback<MediationInterstitialAd, MediationInterstitialAdCallback>
      mediationAdLoadCallback;

  /** Constructor. */
  public SampleInterstitialCustomEventLoader(
      @NonNull MediationInterstitialAdConfiguration mediationInterstitialAdConfiguration,
      @NonNull MediationAdLoadCallback<MediationInterstitialAd, MediationInterstitialAdCallback>
              mediationAdLoadCallback) {
    this.mediationInterstitialAdConfiguration = mediationInterstitialAdConfiguration;
    this.mediationAdLoadCallback = mediationAdLoadCallback;
  }

  /** Loads the interstitial ad from the third-party ad network. */
  public void loadAd() {
    // All custom events have a server parameter named "parameter" that returns
    // back the parameter entered into the UI when defining the custom event.
    Log.i("InterstitialCustomEvent", "Begin loading interstitial ad.");
    String serverParameter = mediationInterstitialAdConfiguration.getServerParameters().getString(
        MediationConfiguration.CUSTOM_EVENT_SERVER_PARAMETER_FIELD);
    Log.d("InterstitialCustomEvent", "Received server parameter.");

    sampleInterstitialAd =
        new SampleInterstitial(mediationInterstitialAdConfiguration.getContext());
    sampleInterstitialAd.setAdUnit(serverParameter);

    // Implement a SampleAdListener and forward callbacks to mediation.
    sampleInterstitialAd.setAdListener(this);

    // Make an ad request.
    Log.i("InterstitialCustomEvent", "start fetching interstitial ad.");
    sampleInterstitialAd.fetchAd(
        SampleCustomEvent.createSampleRequest(mediationInterstitialAdConfiguration));
  }

public SampleAdRequest createSampleRequest(
      MediationAdConfiguration mediationAdConfiguration) {
    SampleAdRequest request = new SampleAdRequest();
    request.setTestMode(mediationAdConfiguration.isTestRequest());
    request.setKeywords(mediationAdConfiguration.getMediationExtras().keySet());
    return request;
  }
}

विज्ञापन फ़ेच हो गया है या उसमें कोई गड़बड़ी हुई है, इस आधार पर आपको onSuccess() या onFailure() में से किसी एक को कॉल करना होगा. onSuccess() को उस क्लास के इंस्टेंस को पास करके कॉल किया जाता है जो MediationInterstitialAd को लागू करता है.

आम तौर पर, ये तरीके तीसरे पक्ष के उस SDK टूल के कॉलबैक में लागू किए जाते हैं जिसे आपका अडैप्टर लागू करता है. इस उदाहरण के लिए, सैंपल SDK टूल में काम के कॉलबैक के साथ SampleAdListener है:

Java

@Override
public void onAdFetchSucceeded() {
  interstitialAdCallback = mediationAdLoadCallback.onSuccess(this);
}

@Override
public void onAdFetchFailed(SampleErrorCode errorCode) {
  mediationAdLoadCallback.onFailure(SampleCustomEventError.createSampleSdkError(errorCode));
}

MediationInterstitialAd को विज्ञापन दिखाने के लिए, showAd() तरीका लागू करना होगा:

Java

@Override
public void showAd(@NonNull Context context) {
  sampleInterstitialAd.show();
}

Google Mobile Ads SDK टूल को मीडिएशन इवेंट भेजना

onSuccess() को कॉल करने के बाद, रिटर्न किए गए MediationInterstitialAdCallback ऑब्जेक्ट का इस्तेमाल, अडैप्टर के ज़रिए तीसरे पक्ष के SDK टूल से Google Mobile Ads SDK टूल पर प्रज़ेंटेशन इवेंट फ़ॉरवर्ड करने के लिए किया जा सकता है. SampleInterstitialCustomEventLoader क्लास, सैंपल विज्ञापन नेटवर्क से Google Mobile Ads SDK को कॉलबैक भेजने के लिए, SampleAdListener इंटरफ़ेस को बड़ा करती है.

यह ज़रूरी है कि आपका कस्टम इवेंट, इनमें से ज़्यादा से ज़्यादा कॉलबैक फ़ॉरवर्ड करे, ताकि आपके ऐप्लिकेशन को Google Mobile Ads SDK से मिलते-जुलते इवेंट मिल सकें. कॉलबैक का इस्तेमाल करने का उदाहरण यहां दिया गया है:

Java

@Override
public void onAdFullScreen() {
  interstitialAdCallback.reportAdImpression();
  interstitialAdCallback.onAdOpened();
}

@Override
public void onAdClosed() {
  interstitialAdCallback.onAdClosed();
}

इससे, इंटरस्टीशियल विज्ञापनों के लिए कस्टम इवेंट लागू करने की प्रोसेस पूरी हो जाती है. पूरा उदाहरण, GitHub पर उपलब्ध है. इसका इस्तेमाल, पहले से काम करने वाले किसी विज्ञापन नेटवर्क के साथ किया जा सकता है. इसके अलावा, कस्टम इवेंट इंटरस्टीशियल विज्ञापन दिखाने के लिए, इसमें बदलाव किया जा सकता है.