विज्ञापन लोड करने से जुड़ी गड़बड़ियां

जब कोई विज्ञापन लोड नहीं हो पाता है, तो फ़ेलियर कॉलबैक कॉल किया जाता है, जो LoadAdError ऑब्जेक्ट.

किसी विज्ञापन के लोड होने में समस्या होने पर, यह कोड स्निपेट गड़बड़ी की जानकारी देता है:

public void OnAdFailedToLoad(LoadAdError error)
{
    // Gets the domain from which the error came.
    string domain = error.GetDomain();

    // Gets the error code. See
    // https://developers.google.com/android/reference/com/google/android/gms/ads/AdRequest
    // and https://developers.google.com/admob/ios/api/reference/Enums/GADErrorCode
    // for a list of possible codes.
    int code = error.GetCode();

   // Gets an error message.
   // For example "Account not approved yet". See
   // https://support.google.com/admob/answer/9905175 for explanations of
   // common errors.
   string message = error.GetMessage();

   // Gets the cause of the error, if available.
   AdError underlyingError = error.GetCause();

   // All of this information is available via the error's toString() method.
   Debug.Log("Load error string: " + error.ToString());

   // Get response information, which may include results of mediation requests.
   ResponseInfo responseInfo = error.GetResponseInfo();
   Debug.Log("Response info: " + responseInfo.ToString());
}

इस जानकारी का इस्तेमाल करके ज़्यादा सटीक तरीके से पता लगाया जा सकता है कि विज्ञापन क्यों दिखाया गया लोड नहीं कर सके. खास तौर पर, com.google.admob डोमेन के तहत आने वाली गड़बड़ियों के लिए iOS और com.google.android.gms.ads Android पर, GetMessage() इस सहायता केंद्र में खोजा गया ज़्यादा जानकारी के लिए, लेख पढ़ें इस समस्या को हल करने के लिए, किए जा सकने वाले ज़रूरी कदमों के बारे में बताया है.