奖励视频广告-无法加载广告错误代码3 admob [英] Rewarded video ads-Failed to load ad error code 3 admob

查看:371
本文介绍了奖励视频广告-无法加载广告错误代码3 admob的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我坚持实施AdMob Rewarded Video 3天了,代码完全可以找到,但是当我启动该应用程序时,它说"onRewardedVideoAdFailedToLoad"并显示错误代码3,并且广告无法正常显示,请帮我做什么?

I stuck for 3 days on implementing AdMob Rewarded Video , the code is completely find but when I launch the app it's said "onRewardedVideoAdFailedToLoad" and getting error code 3 and ad won't display kindly please help me what i do?

推荐答案

错误代码为3表示广告请求成功,但由于缺少广告资源而没有退回任何广告.

Error code is 3 stand for the ad request was successful, but no ad was returned due to lack of ad inventory.

文档在此处 https://developers.google.com/android/reference/com/google/android/gms/ads/AdRequest#ERROR_CODE_NO_FILL

您可以实现此小功能以获取有关错误代码的知识.

You can implement this small function to get the knowledge of error code.

   private int getAdMobErrorCode(SampleErrorCode errorCode) {
    switch (errorCode) {
        case BAD_REQUEST:
        return AdRequest.ERROR_CODE_INVALID_REQUEST;
    case NETWORK_ERROR:
        return AdRequest.ERROR_CODE_NETWORK_ERROR;
    case NO_INVENTORY:
        return AdRequest.ERROR_CODE_NO_FILL;
    case UNKNOWN:
    default:
        return AdRequest.ERROR_CODE_INTERNAL_ERROR;
    }
}

这篇关于奖励视频广告-无法加载广告错误代码3 admob的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆