ข้อผิดพลาดในการโหลดโฆษณา
bookmark_borderbookmark
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
เมื่อโฆษณาโหลดไม่สำเร็จ ระบบจะเรียกใช้ Callback ที่ล้มเหลวซึ่งจะระบุ
ออบเจ็กต์ LoadAdError
รายการ
ข้อมูลโค้ดต่อไปนี้จะดึงข้อมูลข้อผิดพลาดเมื่อโฆษณาโหลดไม่สำเร็จ
public void OnAdFailedToLoad(LoadAdError error)
{
// Gets the domain from which the error came.
string domain = error.GetDomain();
// 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.
int code = error.GetCode();
// Gets an error message.
// For example "Account not approved yet". See
// https://support.google.com/admob/answer/9905175 for explanations of
// common errors.
string message = error.GetMessage();
// Gets the cause of the error, if available.
AdError underlyingError = error.GetCause();
// All of this information is available via the error's toString() method.
Debug.Log("Load error string: " + error.ToString());
// Get response information, which may include results of mediation requests.
ResponseInfo responseInfo = error.GetResponseInfo();
Debug.Log("Response info: " + responseInfo.ToString());
}
ข้อมูลนี้สามารถนำมาใช้เพื่อระบุสิ่งที่เป็นต้นเหตุของการโฆษณาได้อย่างแม่นยำมากขึ้น
โหลดไม่สำเร็จ โดยเฉพาะอย่างยิ่ง สำหรับข้อผิดพลาดภายใต้โดเมน com.google.admob
ใน
iOS และ com.google.android.gms.ads
ใน Android GetMessage()
ค้นหาในศูนย์ช่วยเหลือนี้
บทความ
คำอธิบายและการดำเนินการที่เป็นไปได้ซึ่งทำได้เพื่อแก้ไขปัญหา
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-03-15 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-03-15 UTC"],[[["When an ad fails to load, a `LoadAdError` object is provided in a failure callback, containing information about the error."],["The `LoadAdError` object provides access to the error domain, code, message, underlying cause, and response information."],["Developers can use the error code and message, especially for errors from `com.google.admob` or `com.google.android.gms.ads`, to diagnose and resolve ad loading issues with help from the provided resources."],["The `LoadAdError` object's `ToString()` method and `GetResponseInfo().ToString()` method offer comprehensive overviews of the error and response details for debugging."]]],["When an ad fails to load, the `LoadAdError` object provides details via a callback. Key actions include retrieving the error's domain using `GetDomain()`, the error code with `GetCode()`, and a descriptive message via `GetMessage()`. The underlying cause is accessible with `GetCause()`. All data is also in the `ToString()` method. `GetResponseInfo()` offers insights, possibly regarding mediation. `GetMessage()` can be researched in a specific article to resolve the cause of the ad loading failure.\n"]]