我使用KeyCloak Standalone作为单点登录提供程序。我在abc.goal.com和xyz..goal.com上托管了两个dotnet核心应用程序。我的SLO(单点注销)分两步完成。在LogOut函数内部
1. await HttpContext.SignOutAsync(CookieAuthenticationDefaults.AuthenticationScheme);
after that
2. `POST http://localhost:8080/auth/realms/<my_realm>/protocol/openid-connect/logout`
这在本地主机上执行SLO,但在不同域中托管或在ngrok上测试时不起作用
请帮帮忙,我被卡住了
发布于 2020-03-27 16:57:24
根据documentation,将用户重定向到URL:http://auth-server/auth/realms/{realm-name}/protocol/openid-connect/logout?redirect_uri=encodedRedirectUri
https://stackoverflow.com/questions/60878888
复制相似问题