विज्ञापन लोड करने से जुड़ी गड़बड़ियां
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
प्लैटफ़ॉर्म चुनें:
Android
iOS
Unity
Flutter
विज्ञापन लोड न होने पर, गड़बड़ी की जानकारी देने वाला कॉलबैक फ़ंक्शन कॉल किया जाता है. यह फ़ंक्शन, 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/admob/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());
}
इस जानकारी का इस्तेमाल करके, यह बेहतर तरीके से पता लगाया जा सकता है कि विज्ञापन लोड न होने की वजह क्या थी. खास तौर पर, iOS पर com.google.admob
और Android पर com.google.android.gms.ads
डोमेन में आने वाली गड़बड़ियों के बारे में ज़्यादा जानकारी पाने के लिए, सहायता केंद्र का यह लेख पढ़ें. इसमें गड़बड़ी के बारे में ज़्यादा जानकारी दी गई है. साथ ही, इसे ठीक करने के लिए की जा सकने वाली कार्रवाइयों के बारे में भी बताया गया है.GetMessage()
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-09-02 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-09-02 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eWhen an ad fails to load, a \u003ccode\u003eLoadAdError\u003c/code\u003e object is provided in a failure callback, containing information about the error.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eLoadAdError\u003c/code\u003e object provides access to the error domain, code, message, underlying cause, and response information.\u003c/p\u003e\n"],["\u003cp\u003eDevelopers can use the error code and message, especially for errors from \u003ccode\u003ecom.google.admob\u003c/code\u003e or \u003ccode\u003ecom.google.android.gms.ads\u003c/code\u003e, to diagnose and resolve ad loading issues with help from the provided resources.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eLoadAdError\u003c/code\u003e object's \u003ccode\u003eToString()\u003c/code\u003e method and \u003ccode\u003eGetResponseInfo().ToString()\u003c/code\u003e method offer comprehensive overviews of the error and response details for debugging.\u003c/p\u003e\n"]]],["When an ad fails to load, the `LoadAdError` object provides details via a callback. Key actions include retrieving the error's domain using `GetDomain()`, the error code with `GetCode()`, and a descriptive message via `GetMessage()`. The underlying cause is accessible with `GetCause()`. All data is also in the `ToString()` method. `GetResponseInfo()` offers insights, possibly regarding mediation. `GetMessage()` can be researched in a specific article to resolve the cause of the ad loading failure.\n"],null,["Select platform: [Android](/admob/android/ad-load-errors \"View this page for the Android platform docs.\") [iOS](/admob/ios/ad-load-errors \"View this page for the iOS platform docs.\") [Unity](/admob/unity/ad-load-errors \"View this page for the Unity platform docs.\") [Flutter](/admob/flutter/ad-load-errors \"View this page for the Flutter platform docs.\")\n\n\u003cbr /\u003e\n\nWhen an ad fails to load, a failure callback is called which provides a\n`LoadAdError` object.\n\nThe following code snippet retrieves error information when an ad fails to load: \n\n public void OnAdFailedToLoad(LoadAdError error)\n {\n // Gets the domain from which the error came.\n string domain = error.GetDomain();\n\n // Gets the error code. See\n // https://developers.google.com/admob/android/reference/com/google/android/gms/ads/AdRequest\n // and https://developers.google.com/admob/ios/api/reference/Enums/GADErrorCode\n // for a list of possible codes.\n int code = error.GetCode();\n\n // Gets an error message.\n // For example \"Account not approved yet\". See\n // https://support.google.com/admob/answer/9905175 for explanations of\n // common errors.\n string message = error.GetMessage();\n\n // Gets the cause of the error, if available.\n AdError underlyingError = error.GetCause();\n\n // All of this information is available via the error's toString() method.\n Debug.Log(\"Load error string: \" + error.ToString());\n\n // Get response information, which may include results of mediation requests.\n ResponseInfo responseInfo = error.GetResponseInfo();\n Debug.Log(\"Response info: \" + responseInfo.ToString());\n }\n\nThis information can be used to more accurately determine what caused the ad\nload to fail. In particular, for errors under the domain `com.google.admob` on\niOS and `com.google.android.gms.ads` on Android, the `GetMessage()` can be\nlooked up in [this help center\narticle](//support.google.com/admob/answer/9905175) for a more detailed\nexplanation and possible actions that can be taken to resolve the issue."]]