Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 471 Bytes

guide-implementing_logout.md

File metadata and controls

18 lines (14 loc) · 471 Bytes
title tags
Logout
guides

Most of your users will probably disappear when they close the application, but sometimes they will want to cleanly log out. The AuthN client library will take care of cleaning up its sessions (the the access token and refresh token). Your application may want to do more.

Implementation

Frontend

  1. Create a link that users can click.
  2. Invoke AuthN's logout.
  3. Clean up anything else.
  4. Redirect to logged-out page.