注销重定向 URI 以在 Google 上执行操作?
Logout Redirect Uri für Action on Google?
我正在为 Google 开发一个动作,我正在使用 Visual Studio C' 和 Identity Server 4。我按照 Gooogle 的说明创建了我的客户端,但现在我有一个问题,我已经和我的客户一起测试我的动作一段时间了,效果很好。
new Client
{
ClientId = ApiDefinitions.ClientIdGoogle,
RedirectUris = { "https://oauth-redirect.googleusercontent.com/r/projectId"},
PostLogoutRedirectUris = {},
...(cut for readable code)
我想知道我是否在 PostLogoutRedirectUris 中遗漏了一些东西。有人知道在那里可以提供什么吗?
对于 Google 上的操作,没有注销 URI 作为 OAuth 流程的一部分。人们可以在 Google 助理设置中撤销帐户链接和您的身份验证令牌。
我正在为 Google 开发一个动作,我正在使用 Visual Studio C' 和 Identity Server 4。我按照 Gooogle 的说明创建了我的客户端,但现在我有一个问题,我已经和我的客户一起测试我的动作一段时间了,效果很好。
new Client
{
ClientId = ApiDefinitions.ClientIdGoogle,
RedirectUris = { "https://oauth-redirect.googleusercontent.com/r/projectId"},
PostLogoutRedirectUris = {},
...(cut for readable code)
我想知道我是否在 PostLogoutRedirectUris 中遗漏了一些东西。有人知道在那里可以提供什么吗?
对于 Google 上的操作,没有注销 URI 作为 OAuth 流程的一部分。人们可以在 Google 助理设置中撤销帐户链接和您的身份验证令牌。