Fehler beim Laden der Anzeige
Wenn eine Anzeige nicht geladen werden kann, wird ein Fehler-Callback aufgerufen, der eine
LoadAdError
-Objekt.
Mit dem folgenden Code-Snippet werden Fehlerinformationen abgerufen, wenn eine Anzeige mit Prämie fehlschlägt
zum Laden:
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;
}
Anhand dieser Informationen lässt sich der Grund für die Anzeige genauer ermitteln.
Fehler auftreten. Dies gilt insbesondere für Fehler unter der Domain com.google.admob
auf
iOS und com.google.android.gms.ads
unter Android kann der GetMessage()
in diesem Hilfeartikel nachgeschlagen
Erläuterung und mögliche Maßnahmen zur Lösung des Problems.
Sofern nicht anders angegeben, sind die Inhalte dieser Seite unter der Creative Commons Attribution 4.0 License und Codebeispiele unter der Apache 2.0 License lizenziert. Weitere Informationen finden Sie in den Websiterichtlinien von Google Developers. Java ist eine eingetragene Marke von Oracle und/oder seinen Partnern.
Zuletzt aktualisiert: 2024-08-29 (UTC).
[null,null,["Zuletzt aktualisiert: 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"]]