ออบเจ็กต์ AdResult
มีกลไกในการตรวจหาความพยายามที่โหลดโฆษณาไม่สําเร็จ
หากดำเนินการไม่สำเร็จ เมธอด AdResult
is_successful()
จะแสดงผลเป็นเท็จ
ในกรณีเหล่านี้ การเรียกใช้เมธอด AdResult
ad_error()
จะแสดงผลออบเจ็กต์ AdError
ที่มีข้อมูลเกี่ยวกับข้อผิดพลาด
ต่อไปนี้คือข้อมูลโค้ดที่แสดงข้อมูลที่พร้อมใช้งานเมื่อโฆษณาโหลดไม่สําเร็จ
firebase::Future<firebase::gma::AdResult> load_ad_future =
ad_view->LoadAd(request);
// In a game loop, monitor the load ad status
if (load_ad_future.status() == firebase::kFutureStatusComplete) {
const firebase::gma::AdResult* ad_result = load_ad_future.result();
if (!ad_result.is_successful()) {
// There was an error loading the ad.
const AdError& ad_error = ad_result.ad_error();
firebase::gma::AdErrorCode code = ad_error.code();
std::string domain = ad_error.domain();
std::string message = ad_error.message();
const firebase::gma::ResponseInfo response_info = ad_error.response_info();
printf("Received error with domain: %s, code: %d, message: %s and response info: %s\n”,
domain.c_str(), message.c_str(), response_info.ToString().c_str());
}
}
ข้อมูลนี้สามารถใช้เพื่อระบุสาเหตุที่โหลดโฆษณาไม่สําเร็จได้อย่างแม่นยำมากขึ้น โดยเฉพาะอย่างยิ่งสำหรับข้อผิดพลาดในโดเมน com.google.admob
ใน iOS และ com.google.android.gms.ads
ใน Android คุณสามารถค้นหาข้อความดังกล่าวในบทความนี้ในศูนย์ช่วยเหลือเพื่อดูคำอธิบายโดยละเอียดและการดำเนินการที่ทำได้เพื่อแก้ไขปัญหา