我试图在我的Android应用内集成google +1按钮。一切都很好,但是当用户点击+1按钮时,它会显示以下错误:
您的+1存在暂时性问题。请再试一次。
实际上,我想知道自从过去3个月以来解决这个问题,我已经阅读了与此相关的所有关于stackoverflow的问题以及大量的谷歌搜索。但没有运气!
我的代码如下:
ActivityMain.java
private static final int PLUS_ONE_REQUEST_CODE = 11;
private final String PLUS_ONE_URL = "Google Play App Url";
private PlusOneButton mPlusOneButton;
@Override
protected void onCreate(Bundle savedInstanceState) {
mPlusOneButton = findViewById(R.id.plus_one_button);
}
@Override
protected void onResume() {
super.onResume();
mPlusOneButton.initialize(PLUS_ONE_URL, PLUS_ONE_REQUEST_CODE);
}
activity_main.xml中
<com.google.android.gms.plus.PlusOneButton
xmlns:plus="http://schemas.android.com/apk/lib/com.google.android.gms.plus"
android:id="@+id/plus_one_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
plus:annotation="inline"
plus:size="standard" />
App Level Gradle
dependencies {
implementation 'com.google.android.gms:play-services-plus:11.8.0'
}
我还在AndroidManifest.xml中添加了Internet权限
提前致谢。