gpt4 book ai didi

android - 只有在流程中添加帐户时,Google Signin 才会将显示名称返回为 null

转载 作者:太空宇宙 更新时间:2023-11-03 11:47:16 25 4
gpt4 key购买 nike

在我当前的项目中,我实现了 google 登录功能。登录时正在获取用户信息。在流程中,可以选择在谷歌对话框中添加帐户。当用户当时尝试添加帐户时,我收到了正确的电子邮件,但显示名称为空。

这是用于登录 google 的代码。

GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestEmail()
.requestProfile()
.requestScopes(new Scope(Scopes.PLUS_ME))
.requestScopes(new Scope(Scopes.PLUS_LOGIN))
.build();

谁能帮我解决这个问题?

最佳答案

从谷歌开发控制台创建网络 token 并在您的 Android 应用程序中使用它。 googleblog有精彩攻略关于那个。如果您按照它去做,那么我相信,您的问题将得到解决。前段时间我也遇到了,然后我就跟着他们,我的问题就解决了。

enter image description here

GoogleSignInOptions gso =
new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestIdToken(serverClientId) // here you will pass the client server id that you created
.requestEmail()
.build();

我希望这能以某种方式帮助你。

关于android - 只有在流程中添加帐户时,Google Signin 才会将显示名称返回为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42128245/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com