0

我正在为 Google 开发一个操作,我正在使用带有 Identity Server 4 的 Visual Studio C'。我按照 Gooogle 的说明创建了我的客户端,但现在我有一个问题,我已经测试我的操作一段时间了我的客户,它运作良好。

 new Client
            {
               ClientId = ApiDefinitions.ClientIdGoogle,
               RedirectUris = {  "https://oauth-redirect.googleusercontent.com/r/projectId"},
               PostLogoutRedirectUris = {},
...(cut for readable code)

我想知道我是否在 PostLogoutRedirectUris 中遗漏了什么。有谁知道该给那里什么?

4

1 回答 1

1

对于 Actions on Google,OAuth 流程中没有注销 URI。人们可以在 Google 助理设置中撤销帐户关联和您的身份验证令牌。

于 2021-01-13T19:01:44.527 回答