0

我按照以下说明为隐式流实现了自己的 Oauth 服务器:https ://developers.google.com/actions/identity/oauth2?oauth=implicit

看起来很简单,因为我只需要在检查客户端详细信息后重定向令牌。但是我遇到了问题。我发送这个: https ://oauth-redirect.googleusercontent.com/r/YOUR_PROJECT_ID?access_token=ACCESS_TOKEN&token_type=bearer&state=STATE_STRING

但是,当您重定向到此 URL 时,这似乎会扰乱 google 上的操作。“Sing in Helper”意图似乎起作用然后失败,控制台没有显示任何错误Intent not working

我将不胜感激任何帮助。

4

1 回答 1

0

尝试切换?在 url 中添加一个#。然后,这将在 url 中使用碎片,这将允许 google 读取参数。

https://oauth-redirect.googleusercontent.com/r/YOUR_PROJECT_ID#access_token=ACCESS_TOKEN&token_type=bearer&state=STATE_STRING

于 2019-07-29T19:04:24.780 回答