ข้อผิดพลาดในการโหลดโฆษณา
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
เมื่อโหลดโฆษณาไม่สำเร็จ ระบบจะเรียกใช้ 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-07-30 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-07-30 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"]]