广告不显示,错误 403

Ads not displaying, error 403

Admob 没有显示广告,因为我的 app.Test 广告正在显示,但真正的广告没有。

如果我的帐户被禁用,应该会显示此错误。但是我可以登录我的 admob 帐户。

我还在其他手机上用不同的账户测试过它也有不同的连接但仍然没有用。

这是日志

W/Ads: Received error HTTP response code: 403
 /myapp.test W/Ads: There was a problem getting an ad response. ErrorCode: 0
 /myapp.test W/Ads: Failed to load ad: 0

---稍后添加---

这是布局文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginLeft="15dp"
    android:layout_marginRight="15dp"
    android:orientation="vertical"
    app:behavior_overlapTop="64dp"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    app:theme="@style/AppTheme"
    tools:showIn="@layout/activity_main">

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <android.support.v7.widget.CardView
                android:id="@+id/baseView"
                android:layout_width="match_parent"
                android:layout_height="280dp"
                android:padding="10dp">

            </android.support.v7.widget.CardView>
            <RelativeLayout
                android:layout_marginTop="30dp"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
            <com.google.android.gms.ads.AdView xmlns:ads="http://schemas.android.com/apk/res-auto"
                android:id="@+id/adView"
                android:layout_centerHorizontal="true"
                android:layout_width="320dp"
                android:layout_height="50dp"
                ads:adSize="BANNER"
                ads:adUnitId="@string/admain" />
            </RelativeLayout>
        </LinearLayout>
    </android.support.v4.widget.NestedScrollView>

</LinearLayout>

这就是我在主体中调用广告的方式activity

MobileAds.initialize(getApplicationContext(), getString(R.string.appid));
mAdView = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().addTestDevice(getResources().getString(R.string.test)).build();
mAdView.loadAd(adRequest);

这是gradle

    compile 'com.google.firebase:firebase-ads:10.0.1'

}
apply plugin: 'com.google.gms.google-services'

---稍后添加---

展示广告后。后来我的帐户每月获得 blocked.After,它现在处于活动状态。我在屏蔽之前制作的应用没有显示广告。但是新应用程序可以毫无问题地显示广告..

我认为唯一可能的解决方案是将 package-name 更改为其他名称。它对我有用!

这也发生在我正在进行的项目中。就我而言,这是由于 AdMob 缺少个人信息造成的。 我在 AdMob 控制台输入以下信息后,广告开始正常显示。

设置 -> 联系人姓名

付款 -> 管理设置 -> 公司名称和地址

我希望这对面临此问题的人有所帮助。

我找到了解决上述问题的可行方法。我用不同的包名构建了应用程序,并放置了不同的广告单元,问题就解决了!!

不是一个完美的解决方案,但希望对您有所帮助!