Admob广告植入过程中遇到的错误汇总

前端之家收集整理的这篇文章主要介绍了Admob广告植入过程中遇到的错误汇总前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

【问题一】Admob插屏广告Interstitial根据官方文档【IOS篇】一步一步植入的时候发现请求之后服务器老是返回:"Request Error: No ads to show"的问题:

解决方法参考:https://developers.google.com/mobile-ads-sdk/docs/admob/ios/interstitial?hl=zh-CN

页面最后面的有提到一个问题:

Whencreating an ad unit,make sure to specify Interstitial for the ad type. Interstitial ads will not serve to ad units of type Banner.

翻译过来的意思是:在Admob后台创建广告单元的时候,必须确保指定了Interstitial类型的广告单元。Interstitial广告跟Banner类型的广告不通用。

所以解决插屏或者Banner收不到广告的问题,就是到Admob后台新建一个相应类型的广告,然后代码植入的时候填入相应的广告ID就可以了。

例如:

void ADUtils::initInterstitialForIOS(){
    m_interstitial = [[GADInterstitial alloc] init];
    m_admobDelegate = [[AdmobDelegate alloc] init];
    if (m_interstitial == nil) {
        return;
    }
    m_interstitial.adUnitID = ADMODE_INTERSTITIAL_ID;// 插屏广告的ID(注意:不能用Banner广告的ID,否则会收不到广告)
    [m_interstitial setDelegate:m_admobDelegate];
    [m_interstitial loadRequest:[GADRequest request]];
}


【问题二】IOS这边,当成功调用了一下GADInterstitial的presentFromRootViewController展示插屏广告之后。下次如果这个对象调用loadRequest来请求新的广告,在下次显示广告时,日志会提示

Request Error: Will not send request because interstitial object has been used.


解决方法重新再实例化一个新的GADInterstital对象,然后发送请求。具体初始化代码可以参考上面【问题1】

原文链接:https://www.f2er.com/cocos2dx/346945.html

猜你在找的Cocos2d-x相关文章