ข้อผิดพลาดในการโหลดโฆษณา
เมื่อโฆษณาโหลดไม่สำเร็จ ระบบจะเรียกใช้ Callback ที่ล้มเหลวซึ่งจะระบุ
ออบเจ็กต์ LoadAdError
รายการ
ข้อมูลโค้ดต่อไปนี้เรียกข้อมูลข้อผิดพลาดเมื่อโฆษณาที่มีการให้รางวัลแสดงไม่สำเร็จ
ที่จะโหลด:
onAdFailedToLoad: (ad, loadAdError) {
// Gets the domain from which the error came.
String domain = loadAdError.domain;
// 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 = loadAdError.code;
// A log friendly string summarizing the error.
String message = loadAdError.message;
// Get response information, which may include results of mediation requests.
ResponseInfo? responseInfo = loadAdError.responseInfo;
}
ข้อมูลนี้สามารถนำมาใช้เพื่อระบุสิ่งที่เป็นต้นเหตุของการโฆษณาได้อย่างแม่นยำมากขึ้น
โหลดไม่สำเร็จ โดยเฉพาะอย่างยิ่ง สำหรับข้อผิดพลาดภายใต้โดเมน com.google.admob
ใน
iOS และ com.google.android.gms.ads
ใน Android GetMessage()
ค้นหาในศูนย์ช่วยเหลือนี้
บทความ
คำอธิบายและการดำเนินการที่เป็นไปได้ซึ่งทำได้เพื่อแก้ไขปัญหา
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2024-08-29 UTC
[null,null,["อัปเดตล่าสุด 2024-08-29 UTC"],[[["When an ad fails to load, a `LoadAdError` object provides detailed information about the failure through its properties."],["Developers can access error domain, code, message, and response info from the `LoadAdError` object to understand the reason for ad load failure."],["For errors originating from Google AdMob (specific domains on iOS and Android), the error message can be cross-referenced with a help center article for troubleshooting and resolution guidance."]]],["When an ad fails to load, a `LoadAdError` object is provided via a callback. This object contains error details, including the error's domain, a specific error code, a summarized message, and response information that could be related to mediation. For errors originating from `com.google.admob` (iOS) or `com.google.android.gms.ads` (Android), the message can be checked in a help center article for in-depth information and potential solutions. This information helps to pinpoint the cause of ad loading failure.\n"]]