我正在尝试实施谷歌的PlusOneButton。我在开发人员控制台中创建了项目,并使用我的密钥库生成SHA1密钥用于调试类型。然后我添加了SHA1密钥并生成了客户端ID。 之后,我添加了文档https://developers.google.com/+/mobile/android/recommend中提到的PlusOneButton。当我点击按钮时出现此错误
我很少有疑问我需要在某处添加客户端ID或添加client_secret.json,尽管在任何地方都没有提到。
编辑: 这是我正在使用的代码
<com.google.android.gms.plus.PlusOneButton
xmlns:plus="http://schemas.android.com/apk/lib/com.google.android.gms.plus"
android:id="@+id/google_plus_one_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
plus:size="standard"
plus:annotation="inline"
/>
@Override
protected void onCreate(Bundle savedInstanceState) {
googlePlusView = findViewById(R.id.google_plus_one_button);
}
@Override
protected void onResume() {
super.onResume();
// Refresh the state of the +1 button each time the activity receives focus.
googlePlusView.initialize(URL, 0);
}