ข้อผิดพลาดในการโหลดโฆษณา

เมื่อโฆษณาไม่สามารถโหลดได้ จะมี การโทรกลับ ซึ่งเรียกคุณสมบัตินี้ว่า LoadAdError ออบเจ็กต์

สำหรับ an AdManagerAdViewจะใช้ชื่อต่อไปนี้

ต่อไปนี้เป็นข้อมูลโค้ดที่แสดงให้เห็นข้อมูลที่มีอยู่เมื่อโฆษณา โหลดไม่สำเร็จ:

Java

@Override
public void onAdFailedToLoad(LoadAdError error) {
  // Gets the domain from which the error came.
  String errorDomain = error.getDomain();
  // Gets the error code. See
  // https://developers.google.com/android/reference/com/google/android/gms/ads/AdRequest#constant-summary
  // for a list of possible codes.
  int errorCode = error.getCode();
  // Gets an error message.
  String errorMessage = error.getMessage();
  // Gets additional response information about the request. See
  // https://developers.google.com/admob/android/response-info for more
  // information.
  ResponseInfo responseInfo = error.getResponseInfo();
  // Gets the cause of the error, if available.
  AdError cause = error.getCause();
  // All of this information is available via the error's toString() method.
  Log.d("Ads", error.toString());
}

Kotlin

override fun onAdFailedToLoad(error: LoadAdError) {
    // Gets the domain from which the error came.
    val errorDomain = error.domain
    // Gets the error code. See
    // https://developers.google.com/android/reference/com/google/android/gms/ads/AdRequest#constant-summary
    // for a list of possible codes.
    val errorCode = error.code
    // Gets an error message.
    val errorMessage = error.message
    // Gets additional response information about the request. See
    // https://developers.google.com/admob/android/response-info for more
    // information.
    val responseInfo = error.responseInfo
    // Gets the cause of the error, if available.
    val cause = error.cause
    // All of this information is available via the error's toString() method.
    Log.d("Ads", error.toString())
}

ข้อมูลนี้สามารถนำมาใช้เพื่อระบุสิ่งที่เป็นต้นเหตุของการโฆษณาได้อย่างแม่นยำมากขึ้น โหลดไม่สำเร็จ