作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望你一切都好。
在 bundle 中添加 npa 0 以请求个性化广告是否有效,或者我们需要为此创建另一个对象?
根据文档这里所说的 Forward consent to the Google Mobile Ads SDK
这是请求非个性化广告
Bundle extras = new Bundle();
extras.putString("npa", "1");
AdRequest request = new AdRequest.Builder()
.addNetworkExtrasBundle(AdMobAdapter.class, extras)
.build();
If non-personalized ads are requested, the ad request URL currently includes &npa=1. However, note that this is an internal implementation detail of the Google Mobile Ads SDK and is subject to change.
Bundle extras = new Bundle();extras.putString("npa", "0");
最佳答案
如果您想请求个性化广告,则无需使用addNetworkExtrasBundle()
.
只需使用,
AdRequest.Builder builder = new AdRequest.Builder();
if (/*Request non-personalized ads*/) {
Bundle extras = new Bundle();
extras.putString("npa", "1");
builder.addNetworkExtrasBundle(AdMobAdapter.class, extras);
}
AdRequest request = builder.build();
关于android - 在许可 SDK admob 中为个性化广告添加 npa 0 是否有效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58371241/
我打算在瑞士做一个调查。将询问 NPA。 NPA (postal codes)包含 4 个数字。 例如 1227 是 Carouge 的 NPA(瑞士日内瓦州的一部分)。 例如,1784 年是 Cou
我希望你一切都好。 在 bundle 中添加 npa 0 以请求个性化广告是否有效,或者我们需要为此创建另一个对象? 根据文档这里所说的 Forward consent to the Google M
我是一名优秀的程序员,十分优秀!