IdentityServer4退出登录,跳转到原页面
IdentityServer4退出登录,注销登录已经封装好了我们使用其实很简单
- //注销登录
- public IActionResult Logout()
- {
- return SignOut("Cookies", "oidc");
- }
但是里边封装的细节并不简单,由于是统一的认证中心单点登录,不仅仅是清楚退出项目的缓存和cookie等信息,还是在授权中心去清楚相关的认证信息,并且还要通知其他客户端用户退出信息。
退出登录后跳转到原页面
默认情况下退出登录后是会跳转到,配置的注销地址
/signout-callback-oidc会由客户端相关组件处理,基本都是跳转到首页,我们有些时候希望跳转到原来的页面
方法一:我们优先取出来原地址,进行跳转
在登录中心添加Logout方法:
- private readonly IIdentityServerInteractionService _interaction;
- public AccountController(IIdentityServerInteractionService interaction)
- {
- _interaction = interaction;
- }
- [
- public async Task<IActionResult> Logout(string logoutId)
- {
- var logout = await _interaction.GetLogoutContextAsync(logoutId);
- await HttpContext.SignOutAsync();
- //获取客户端点击注销登录的地址
- var refererUrl = Request.Headers["Referer"].ToString();
- if (!string.IsNullOrWhiteSpace(refererUrl))
- {
- return Redirect(refererUrl);
- }
- else
- {
- //获取配置的默认的注销登录后的跳转地址
- if (logout.PostLogoutRedirectUri != null)
- {
- return Redirect(logout.PostLogoutRedirectUri);
- }
- }
- return View();
- }
方法二:删除配置的PostLogoutRedirectUris,在添加方法
添加方法:
- private readonly IIdentityServerInteractionService _interaction;
- public AccountController(IIdentityServerInteractionService interaction)
- {
- _interaction = interaction;
- }
- [
- public async Task<IActionResult> Logout(string logoutId)
- {
- var logout = await _interaction.GetLogoutContextAsync(logoutId);
- await HttpContext.SignOutAsync();
- if (logout.PostLogoutRedirectUri != null)
- {
- return Redirect(logout.PostLogoutRedirectUri);
- }
- //获取客户端点击注销登录的地址
- var refererUrl = Request.Headers["Referer"].ToString();
- return Redirect(refererUrl);
- }