如何创建帐户关联



我想创建帐户链接来识别用户。

我尝试参考下面的链接。

  • https://developers.google.com/actions/identity/account-linking
  • 如何在谷歌操作中仅使用谷歌帐户对用户进行身份验证?

然后当我在谷歌模拟器上的操作上尝试帐户链接时。

我得到了这个结果。

{
"response": "It looks like your Test account is not linked yet",
"audioResponse": "//NExAARc...",
"debugInfo": {
    "sharedDebugInfo": [
        {
            "name": "Account Linking Url",
            "debugInfo": "https://assistant.google.com/services/auth/handoffs/auth/start?provider=my_project_name_dev&scopes=email+name&return_url=https://www.google.com/"
        }
    ]
}}

然后我复制并粘贴了该链接到我的浏览器中。

但我得到了这个结果。

400. That’s an error.
Error: invalid_scope
Some requested scopes were invalid. {valid=
[https://www.googleapis.com/auth/userinfo.email], invalid=[name]}

我该如何解决它?

name 作用域不是有效的作用域。(https://www.googleapis.com/auth/userinfo.email范围有效,但已弃用。

请参阅 https://developers.google.com/identity/protocols/googlescopes#google_sign-in 以了解所需的范围,但可能profileemail是您要查找的范围。

相关内容

  • 没有找到相关文章

最新更新