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.
Đoạn mã sau đây truy xuất thông tin về lỗi khi không tải được một quảng cáo có tặng thưởng:
onAdFailedToLoad:(ad,loadAdError){// Gets the domain from which the error came.Stringdomain=loadAdError.domain;// 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.intcode=loadAdError.code;// A log friendly string summarizing the error.Stringmessage=loadAdError.message;// Get response information, which may include results of mediation requests.ResponseInfo?responseInfo=loadAdError.responseInfo;}
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 đề.
[[["Dễ hiểu","easyToUnderstand","thumb-up"],["Giúp tôi giải quyết được vấn đề","solvedMyProblem","thumb-up"],["Khác","otherUp","thumb-up"]],[["Thiếu thông tin tôi cần","missingTheInformationINeed","thumb-down"],["Quá phức tạp/quá nhiều bước","tooComplicatedTooManySteps","thumb-down"],["Đã lỗi thời","outOfDate","thumb-down"],["Vấn đề về bản dịch","translationIssue","thumb-down"],["Vấn đề về mẫu/mã","samplesCodeIssue","thumb-down"],["Khác","otherDown","thumb-down"]],["Cập nhật lần gần đây nhất: 2026-07-08 UTC."],[],["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"]]