Lỗi khi tải quảng cáo
Sử dụng bộ sưu tập để sắp xếp ngăn nắp các trang
Lưu và phân loại nội dung dựa trên lựa chọn ưu tiên của bạn.
Khi một quảng cáo không tải được, hệ thống sẽ gọi một lệnh gọi lại về lỗi, lệnh gọi lại này cung cấp một
đối tượng LoadAdError
.
Đối với mọi định dạng quảng cáo, nếu một quảng cáo không tải được, hệ thống sẽ gọi lệnh gọi lại sau đây:
public void OnAdFailedToLoad(object sender, AdFailedToLoadEventArgs args)
Đoạn mã sau đây truy xuất thông tin về lỗi khi một quảng cáo không tải được:
public void OnAdFailedToLoad(object sender, AdFailedToLoadEventArgs args)
{
LoadAdError loadAdError = args.LoadAdError;
// Gets the domain from which the error came.
string domain = loadAdError.GetDomain();
// Gets the error code. See
// https://developers.google.com/ad-manager/mobile-ads-sdk/android/reference/com/google/android/gms/ads/AdRequest
// and https://developers.google.com/ad-manager/mobile-ads-sdk/ios/api/reference/Enums/GADErrorCode
// for a list of possible codes.
int code = loadAdError.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 = loadAdError.GetMessage();
// Gets the cause of the error, if available.
AdError underlyingError = loadAdError.GetCause();
// All of this information is available via the error's toString() method.
Debug.Log("Load error string: " + loadAdError.ToString());
// Get response information, which may include results of mediation requests.
ResponseInfo responseInfo = loadAdError.GetResponseInfo();
Debug.Log("Response info: " + responseInfo.ToString());
}
Bạn có thể dùng thông tin này để xác định chính xác hơn nguyên nhân khiến quảng cáo không tải được. Đặc biệt, đối với các lỗi trong miền com.google.admob
trên iOS và com.google.android.gms.ads
trên Android, bạn có thể tìm thấy GetMessage()
trong bài viết này trong trung tâm trợ giúp để biết thông tin giải thích chi tiết hơn và các hành động mà bạn có thể thực hiện để giải quyết vấn đề.
Trừ phi có lưu ý khác, nội dung của trang này được cấp phép theo Giấy phép ghi nhận tác giả 4.0 của Creative Commons và các mẫu mã lập trình được cấp phép theo Giấy phép Apache 2.0. Để biết thông tin chi tiết, vui lòng tham khảo Chính sách trang web của Google Developers. Java là nhãn hiệu đã đăng ký của Oracle và/hoặc các đơn vị liên kết với Oracle.
Cập nhật lần gần đây nhất: 2025-08-27 UTC.
[null,null,["Cập nhật lần gần đây nhất: 2025-08-27 UTC."],[[["\u003cp\u003eWhen an ad fails to load, a \u003ccode\u003eLoadAdError\u003c/code\u003e object is provided in the failure callback, \u003ccode\u003eOnAdFailedToLoad\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eLoadAdError\u003c/code\u003e object contains detailed information about the failure, including domain, error code, message, and underlying cause.\u003c/p\u003e\n"],["\u003cp\u003eDevelopers can use the error code and message to identify the reason for ad load failure and potentially resolve the issue.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eGetMessage()\u003c/code\u003e method provides a human-readable error message, while the error code can be cross-referenced with platform documentation.\u003c/p\u003e\n"],["\u003cp\u003eYou can find further explanation of error messages in the Google AdMob help center.\u003c/p\u003e\n"]]],[],null,["# Ad load errors\n\nSelect platform: [Android](/ad-manager/mobile-ads-sdk/android/ad-load-errors \"View this page for the Android platform docs.\") [iOS](/ad-manager/mobile-ads-sdk/ios/ad-load-errors \"View this page for the iOS platform docs.\") [Unity](/ad-manager/mobile-ads-sdk/unity/ad-load-errors \"View this page for the Unity platform docs.\") [Flutter](/ad-manager/mobile-ads-sdk/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\nFor any ad format, if the ad fails to load, the following callback is called: \n\n public void OnAdFailedToLoad(object sender, AdFailedToLoadEventArgs args)\n\nThe following code snippet retrieves error information when an ad fails to load: \n\n public void OnAdFailedToLoad(object sender, AdFailedToLoadEventArgs args)\n {\n LoadAdError loadAdError = args.LoadAdError;\n\n // Gets the domain from which the error came.\n string domain = loadAdError.GetDomain();\n\n // Gets the error code. See\n // https://developers.google.com/ad-manager/mobile-ads-sdk/android/reference/com/google/android/gms/ads/AdRequest\n // and https://developers.google.com/ad-manager/mobile-ads-sdk/ios/api/reference/Enums/GADErrorCode\n // for a list of possible codes.\n int code = loadAdError.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 = loadAdError.GetMessage();\n\n // Gets the cause of the error, if available.\n AdError underlyingError = loadAdError.GetCause();\n\n // All of this information is available via the error's toString() method.\n Debug.Log(\"Load error string: \" + loadAdError.ToString());\n\n // Get response information, which may include results of mediation requests.\n ResponseInfo responseInfo = loadAdError.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."]]