מודעת מעברון מתגמלת (בטא)

מודעות מעברון מתגמלות הן סוג של פורמט מודעה עם תמריץ שמאפשר לכם להציע תגמולים על מודעות שמופיעות באופן אוטומטי במהלך מעברים טבעיים באפליקציה. שלא כמו מודעות מתגמלות רגילות, המשתמשים לא צריכים להביע הסכמה להצגה של מודעת מעברון מתגמלת.

דרישות מוקדמות

תמיד כדאי לבדוק באמצעות מודעות בדיקה

קוד לדוגמה שכולל מזהה של יחידת מודעות, שאפשר להשתמש בו כדי לבקש מודעות לבדיקה. הוא הוגדר במיוחד להחזיר מודעות בדיקה במקום מודעות ייצור בכל בקשה, כך שבטוח להשתמש בו.

עם זאת, אחרי שמירת אפליקציה בממשק האינטרנט של AdMob ויצירת מזהי יחידות מודעות משלכם לשימוש באפליקציה, עליכם להגדיר את המכשיר כמכשיר בדיקה במהלך הפיתוח.

Android

ca-app-pub-3940256099942544/5354046379

iOS

ca-app-pub-3940256099942544/6978759866

איך מפעילים את Mobile Ads SDK

לפני טעינת המודעות, צריך להפעיל את Mobile Ads SDK באפליקציה באמצעות קריאה ל-MobileAds.Initialize(). צריך לעשות זאת רק פעם אחת, רצוי בזמן השקת האפליקציה.

using GoogleMobileAds;
using GoogleMobileAds.Api;

public class GoogleMobileAdsDemoScript : MonoBehaviour
{
    public void Start()
    {
        // Initialize the Google Mobile Ads SDK.
        MobileAds.Initialize((InitializationStatus initStatus) =>
        {
            // This callback is called once the MobileAds SDK is initialized.
        });
    }
}

אם אתם משתמשים בתהליך בחירת הרשת (Mediation), כדאי להמתין עד לקריאה החוזרת (callback) לפני טעינת המודעות, כדי לוודא שכל המתאמים של תהליך בחירת הרשת יופעלו.

הטמעה

השלבים העיקריים לשילוב מודעות מעברון מתגמלות הם:

  1. טעינת מודעת המעברון המתגמלת
  2. [אופציונלי] אימות קריאות חוזרות (callbacks) של אימות בצד השרת (SSV)
  3. הצגת מודעת מעברון מתגמלת עם קריאה חוזרת לקבלת פרס
  4. האזנה לאירועים של מודעות מעברון מתגמלות
  5. ניקוי המודעה המתגמלת מסוג מעברון
  6. טעינת מודעה מעברון מתגמלת הבאה מראש

טעינת מודעת המעברון המתגמלת

כדי לטעון מודעה מעברון מתגמלת, משתמשים ב-method הסטטי Load() ב-class‏ RewardedInterstitialAd. שיטת הטעינה מחייבת מזהה יחידת מודעה, אובייקט AdRequest וטיפולי סיום (completion handler) שנקרא כשהטעינה של המודעה מסתיימת בהצלחה או כשהיא נכשלת. אובייקט RewardedInterstitialAd הטעון מסופק כפרמטר בטיפול ההשלמה. הדוגמה הבאה מראה איך לטעון RewardedInterstitialAd.


  // These ad units are configured to always serve test ads.
#if UNITY_ANDROID
  private string _adUnitId = "ca-app-pub-3940256099942544/5354046379";
#elif UNITY_IPHONE
  private string _adUnitId = "ca-app-pub-3940256099942544/6978759866";
#else
  private string _adUnitId = "unused";
#endif

  private RewardedInterstitialAd _rewardedInterstitialAd;

  /// <summary>
  /// Loads the rewarded interstitial ad.
  /// </summary>
  public void LoadRewardedInterstitialAd()
  {
      // Clean up the old ad before loading a new one.
      if (_rewardedInterstitialAd != null)
      {
            _rewardedInterstitialAd.Destroy();
            _rewardedInterstitialAd = null;
      }

      Debug.Log("Loading the rewarded interstitial ad.");

      // create our request used to load the ad.
      var adRequest = new AdRequest();
      adRequest.Keywords.Add("unity-admob-sample");

      // send the request to load the ad.
      RewardedInterstitialAd.Load(_adUnitId, adRequest,
          (RewardedInterstitialAd ad, LoadAdError error) =>
          {
              // if error is not null, the load request failed.
              if (error != null || ad == null)
              {
                  Debug.LogError("rewarded interstitial ad failed to load an ad " +
                                 "with error : " + error);
                  return;
              }

              Debug.Log("Rewarded interstitial ad loaded with response : "
                        + ad.GetResponseInfo());

              _rewardedInterstitialAd = ad;
          });
  }

[אופציונלי] אימות קריאות חוזרות (callbacks) של אימות בצד השרת (SSV)

באפליקציות שדורשות נתונים נוספים בקריאות חוזרות (callbacks) של אימות בצד השרת, צריך להשתמש בתכונה 'נתונים מותאמים אישית' של מודעות מעברון מתגמלות. כל ערך מחרוזת שמוגדר באובייקט של מודעת פרסום עם תמורה מועבר לפרמטר השאילתה custom_data של קריאת החזרה (callback) של SSV. אם לא מגדירים ערך נתונים מותאם אישית, הערך של פרמטר השאילתה custom_data לא ייכלל בקריאה החוזרת של SSV.

דוגמת הקוד הבאה מראה איך להגדיר את האפשרויות של SSV אחרי טעינת המודעה המעברון עם התמריץ.

// send the request to load the ad.
RewardedInterstitialAd.Load(_adUnitId,
                            adRequest,
                            (RewardedInterstitialAd ad, LoadAdError error) =>
    {
        // If the operation failed, an error is returned.
        if (error != null || ad == null)
        {
            Debug.LogError("Rewarded interstitial ad failed to load an ad " +
                           " with error : " + error);
            return;
        }

        // If the operation completed successfully, no error is returned.
        Debug.Log("Rewarded interstitial ad loaded with response : " +
                   ad.GetResponseInfo());
        
        // Create and pass the SSV options to the rewarded ad.
        var options = new ServerSideVerificationOptions
                              .Builder()
                              .SetCustomData("SAMPLE_CUSTOM_DATA_STRING")
                              .Build()
        ad.SetServerSideVerificationOptions(options);
        
});

אם רוצים להגדיר מחרוזת פרס בהתאמה אישית, צריך לעשות זאת לפני הצגת המודעה.

הצגת מודעת מעברון מתגמלת עם קריאה חוזרת לקבלת פרס

כשמציגים את המודעה, צריך לספק קריאה חוזרת (callback) כדי לטפל בתגמול למשתמש. המודעות יכולות להופיע רק פעם אחת בכל טעינת דף. משתמשים ב-method‏ CanShowAd() כדי לוודא שהמודעה מוכנה להצגה.

הקוד הבא מציג את השיטה הטובה ביותר להצגת מודעה מעברון עם פרס.

public void ShowRewardedInterstitialAd()
{
    const string rewardMsg =
        "Rewarded interstitial ad rewarded the user. Type: {0}, amount: {1}.";

    if (rewardedInterstitialAd != null && rewardedInterstitialAd.CanShowAd())
    {
        rewardedInterstitialAd.Show((Reward reward) =>
        {
            // TODO: Reward the user.
            Debug.Log(String.Format(rewardMsg, reward.Type, reward.Amount));
        });
    }
}

האזנה לאירועים של מודעות מעברון מתגמלות

כדי להתאים אישית את התנהגות המודעה, אפשר להתחבר למספר אירועים במחזור החיים של המודעה. כדי להאזין לאירועים האלה, צריך לרשום נציג כפי שמתואר בהמשך.

private void RegisterEventHandlers(RewardedInterstitialAd ad)
{
    // Raised when the ad is estimated to have earned money.
    ad.OnAdPaid += (AdValue adValue) =>
    {
        Debug.Log(String.Format("Rewarded interstitial ad paid {0} {1}.",
            adValue.Value,
            adValue.CurrencyCode));
    };
    // Raised when an impression is recorded for an ad.
    ad.OnAdImpressionRecorded += () =>
    {
        Debug.Log("Rewarded interstitial ad recorded an impression.");
    };
    // Raised when a click is recorded for an ad.
    ad.OnAdClicked += () =>
    {
        Debug.Log("Rewarded interstitial ad was clicked.");
    };
    // Raised when an ad opened full screen content.
    ad.OnAdFullScreenContentOpened += () =>
    {
        Debug.Log("Rewarded interstitial ad full screen content opened.");
    };
    // Raised when the ad closed full screen content.
    ad.OnAdFullScreenContentClosed += () =>
    {
        Debug.Log("Rewarded interstitial ad full screen content closed.");
    };
    // Raised when the ad failed to open full screen content.
    ad.OnAdFullScreenContentFailed += (AdError error) =>
    {
        Debug.LogError("Rewarded interstitial ad failed to open " +
                       "full screen content with error : " + error);
    };
}

ניקוי המודעה המתגמלת מסוג מעברון

כשמסיימים להשתמש ב-RewardedInterstitialAd, חשוב להפעיל את השיטה Destroy() לפני שמבטלים את ההפניה אליו:

_rewardedInterstitialAd.Destroy();

הפעולה הזו תודיע לפלאגין שהאובייקט כבר לא בשימוש, ואפשר יהיה לנצל מחדש את הזיכרון שהוא תופס. אם לא קוראים ל-method הזה, נוצרות דליפות זיכרון.

טעינת מודעה מעברון מתגמלת הבאה מראש

RewardedInterstitialAd הוא אובייקט לשימוש חד-פעמי. כלומר, אחרי שמודעה מעברון עם פרס מוצגת, לא ניתן להשתמש באובייקט שוב. כדי לבקש מודעה מעברון מתגמלת נוספת, צריך לטעון אובייקט RewardedInterstitialAd חדש.

כדי להכין מודעה מעברון מתגמלת להזדמנות החשיפות הבאה, צריך לטעון מראש את המודעה המעברון המתגמלת ברגע שמופעל אירוע המודעה OnAdFullScreenContentClosed או OnAdFullScreenContentFailed.

private void RegisterReloadHandler(RewardedInterstitialAd ad)
{
    // Raised when the ad closed full screen content.
    ad.OnAdFullScreenContentClosed += ()
    {
        Debug.Log("Rewarded interstitial ad full screen content closed.");

        // Reload the ad so that we can show another as soon as possible.
        LoadRewardedInterstitialAd();
    };
    // Raised when the ad failed to open full screen content.
    ad.OnAdFullScreenContentFailed += (AdError error) =>
    {
        Debug.LogError("Rewarded interstitial ad failed to open " +
                       "full screen content with error : " + error);

        // Reload the ad so that we can show another as soon as possible.
        LoadRewardedInterstitialAd();
    };
}

מקורות מידע נוספים