我已经为Android实现了Flurry SDK,但在logcat中出现了错误:
E/FlurryAgent: Ad server responded with the following error(s):
Adunit name or code provided in the request is invalid.
我已在onStart中编写了这些代码
FlurryAgent.onStartSession(this);
adView.fetchAndDisplayAd();
我不知道出了什么问题。我添加了正确的api密钥,但仍然一次又一次地得到相同的错误。
注意:我几小时前整合了它。它只是花时间初始化还是真的是一个错误?
提前致谢。
答案 0 :(得分:1)
此错误表示您在广告调用中使用的广告单元名称与您帐户中的可用广告单元不匹配。确保您在广告设置中指定的广告单元名称:
mFlurryAdNative = new FlurryAdNative(this, mAdSpaceName);
或
mFlurryAdInterstitial = new FlurryAdInterstitial(this, mAdSpaceName);
或
mFlurryAdBanner = new FlurryAdBanner(this, mBanner, mAdSpaceName);
使用以下步骤匹配您在Flurry门户网站中创建的广告单元名称:
https://developer.yahoo.com/flurry/docs/publisher/gettingstarted/basicadunitsetup