מודעת מעברון מתגמלת היא סוג של פורמט מודעה שמבוסס על תמריצים. הוא מאפשר להציע תגמולים על מודעות שמופיעות באופן אוטומטי בנקודות מעבר טבעיות באפליקציה. בשונה ממודעות מתגמלות רגילות, המשתמשים לא צריכים להביע הסכמה לצפייה במודעת מעברון מתגמלת.
דרישות מוקדמות
- מבצעים את ההוראות במדריך לתחילת העבודה.
ביצוע בדיקות באמצעות מודעות בדיקה תמיד
קוד לדוגמה שמכיל מזהה של יחידת מודעות שאפשר להשתמש בו כדי לבקש מודעות לבדיקה. הוא הוגדר במיוחד להחזיר מודעות בדיקה במקום מודעות ייצור בכל בקשה, כך שבטוח להשתמש בו.
עם זאת, אחרי שמירת אפליקציה בממשק האינטרנט של 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) של אימות בצד השרת (SSV)
- הצגת מודעת מעברון מתגמלת עם קריאה חוזרת לקבלת פרס
- האזנה לאירועים של מודעות מעברון מתגמלות
- איך מוחקים את מודעת המעברון המתגמלת
- טעינת מודעת המעברון המתגמלת הבאה מראש
טעינת מודעת המעברון המתגמלת
כדי לטעון מודעת מעברון מתגמלת, משתמשים ב-method הסטטי Load()
בכיתה 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;
});
}
[אופציונלי] אימות קריאות חוזרות (callback) של אימות בצד השרת (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) של הפרס
כשמציגים את המודעה, צריך לספק פונקציית קריאה חוזרת לטיפול בתגמול למשתמש. המודעות יכולות להופיע רק פעם אחת בכל טעינת דף. משתמשים בשיטה 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));
});
}
}
איך להאזין לאירועים של מודעות מעברון מתגמלות
כדי להתאים אישית את התנהגות המודעה, אפשר להתחבר למספר אירועים במחזור החיים של המודעה. כדי להאזין לאירועים האלה, צריך לרשום נציג (delegate) כפי שמתואר בהמשך.
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();
};
}
מקורות מידע נוספים
- דוגמה ל-HelloWorld: הטמעה מינימלית של כל הפורמטים של המודעות.