AdResult
オブジェクトは、広告の読み込みの失敗を検出するメカニズムを提供します。エラーが発生すると、AdResult
メソッド is_successful()
は false を返します。このような状況では、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());
}
}
この情報を使用して、広告を読み込めなかった原因をより正確に特定できます。iOS のドメイン com.google.admob
、Android のドメイン com.google.android.gms.ads
のエラーに関する詳細と対処方法については、こちらのヘルプセンター記事をご覧ください。