Skip to content

Commit

Permalink
add in account logout considerations
Browse files Browse the repository at this point in the history
  • Loading branch information
mooreds committed Jul 15, 2024
1 parent 98e3c20 commit 21a2f83
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ section: lifecycle
subcategory: authenticate users
codeRoot: https://raw.githubusercontent.com/FusionAuth/fusionauth-example-node-centralized-sessions/main
---
import AccountLogout from 'src/content/docs/lifecycle/manage-users/account-management/_account-logout.mdx';
import Aside from 'src/components/Aside.astro';
import InlineField from 'src/components/InlineField.astro';
import InlineUIElement from 'src/components/InlineUIElement.astro';
Expand All @@ -23,6 +24,7 @@ import CentralizedSessionsSessionInvalid from 'src/diagrams/docs/lifecycle/authe
import SSOLogout from 'src/diagrams/docs/lifecycle/authenticate-users/sso-logout.astro';
import SessionsExpiration from 'src/content/docs/lifecycle/authenticate-users/_sessions-expiration.mdx';


## Overview

This guide will illustrate logout and session management features in FusionAuth. Logout allows you to revoke users' access to applications and functionality, while session management lets you manage and control the access. For web and mobile applications, a session is what allows servers receiving requests over HTTP to group requests by a single user or application together over time. OWASP, an open-source security project, [defines a session](https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html) as:
Expand Down Expand Up @@ -439,7 +441,7 @@ You could work around this if the Identity Provider has a well known logout endp

### Logging Out Of The Account Application

TODO pull from accoutn self service, from this PR: https://github.com/FusionAuth/fusionauth-site/pull/3150
<AccountLogout />

### the `/api/logout` Endpoint

Expand Down

0 comments on commit 21a2f83

Please sign in to comment.