如果廣告無法載入,系統會呼叫 回呼 ,提供 LoadAdError
物件。
針對 an AdManagerAdView
,會呼叫以下內容:
Java
public void onAdFailedToLoad(LoadAdError adError);
Kotlin
fun onAdFailedToLoad(error: LoadAdError)
以下程式碼片段說明廣告無法載入時可用的資訊:
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 using 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 using the error's toString() method.
Log.d("Ads", error.toString())
}
您可以利用這項資訊,更準確地判斷廣告載入失敗的原因。
偵錯常見的錯誤記錄訊息
在 Google Mobile Ads SDK 23.5.0 版中,我們強化了詳細記錄功能,以加入無法載入廣告位置的堆疊追蹤。這些訊息並非表示發生異常終止,而是指出錯誤的獨特來源。下表提供常見的錯誤記錄、說明和解決的建議動作:
錯誤記錄 | 說明 | 建議的動作 |
---|---|---|
com.google.android.gms.ads.nonagon.render.cp: * |
廣告伺服器未傳回廣告或任何中介服務廣告來源。 | 如要進一步瞭解如何排解未填入的廣告問題,請參閱「排解未填入的曝光」。 |
com.google.android.gms.ads.nonagon.render.e: * |
無法載入中介服務刊登序列中的所有廣告來源。具體錯誤代表上次失敗的廣告來源。 | 如要進一步瞭解如何記錄每個中介廣告來源的失敗原因,請參閱「回應資訊」。 |
com.google.android.gms.ads.internal.util.*: Unable to obtain a JavascriptEngine. |
由於特權程序不允許使用 WebView ,因此廣告要求未成功。 |
|
由於網路連線速度緩慢,廣告請求失敗。 | 請嘗試改善網際網路連線,然後再試一次。 | |
com.google.android.gms.ads.nonagon.load.a |
廣告請求已逾時。 | |
com.google.android.gms.ads.internal.util.*: Error while
connecting to ad server: Unable to resolve host "pubads.g.doubleclick.net":
No address associated with hostname |
網路連線問題,導致廣告請求失敗。 | |
com.google.android.gms.ads.internal.util.*: Error building
request URL: Cannot determine request type. Is your ad unit id correct? |
廣告單元 ID 與預期的規則運算式不符。 | 檢查廣告單元 ID 是否正確。 |
com.google.android.gms.ads.internal.render.bt: Unable to
instantiate mediation adapter class. |
Google Mobile Ads SDK 找不到中介服務轉接程式。 |