ข้อผิดพลาดในการโหลดโฆษณา
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
เมื่อโฆษณาโหลดไม่สำเร็จ ระบบจะเรียกใช้ 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/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.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 และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-03-14 UTC
[[["เข้าใจง่าย","easyToUnderstand","thumb-up"],["แก้ปัญหาของฉันได้","solvedMyProblem","thumb-up"],["อื่นๆ","otherUp","thumb-up"]],[["ไม่มีข้อมูลที่ฉันต้องการ","missingTheInformationINeed","thumb-down"],["ซับซ้อนเกินไป/มีหลายขั้นตอนมากเกินไป","tooComplicatedTooManySteps","thumb-down"],["ล้าสมัย","outOfDate","thumb-down"],["ปัญหาเกี่ยวกับการแปล","translationIssue","thumb-down"],["ตัวอย่าง/ปัญหาเกี่ยวกับโค้ด","samplesCodeIssue","thumb-down"],["อื่นๆ","otherDown","thumb-down"]],["อัปเดตล่าสุด 2025-03-14 UTC"],[[["When an ad fails to load, a `LoadAdError` object is provided in the failure callback, containing details about the error."],["The `LoadAdError` object provides information such as the error domain, code, message, and response details for debugging purposes."],["For errors originating from Google AdMob (domains `com.google.admob` or `com.google.android.gms.ads`), further information and troubleshooting steps can be found in the AdMob help center article linked in the documentation."]]],["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"]]