谷歌,加上客户端和QUOT;发生内部错误"客户端、错误、发生、谷歌

2023-09-06 09:07:13 作者:多余のヤんυà麵

最后一天,我开始收到发生内部错误,同时试图在我的应用程序登录的用户使用谷歌加,我用得不好,并没有改变。在code并没有改变很长一段时间。

Last day I started to receive "An internal error occured" while trying to sign user with Google Plus in my application, that I used well and have not changed. The code has not changed for a long time.

GmsClient 返回

connect: bindService returned true for Intent { act=com.google.android.gms.plus.service.START }
service broker connected, binder: android.os.BinderProxy@40fdbd20

和,显示敬酒消息发生内部错误之后。

And right after that shows toast message "An internal error occured".

我试图编译谷歌SDK +样品,并运行在同一台设备上,但它显示了同样的错误。 在谷歌的API或许真的改变了吗?

I tried to compile Google SDK+ samples and run on the same device but it shows the same error. Maybe something changed in Google APIs?

推荐答案

这是太愚蠢,但我没有找到任何信息,谷歌搜索互联网和组。 但它解决了更换:

This is too dumb but I have not found any information googling internet and groups. But it solved replacing:

//static final String[] SCOPES = new String[] { Scopes.PLUS_PROFILE, PLUS_WRITE_MOMENT };
static final String[] SCOPES = new String[] { Scopes.PLUS_PROFILE };

好像是因为PLUS_WRITE_MOMENT的错误发生... 我不明白为什么,但没有这个它的工作原理。

Seems the error occured because of PLUS_WRITE_MOMENT... I don't understand why, but without this it works.

我喜欢谷歌...