Skip to content

Commit

Permalink
readthrough
Browse files Browse the repository at this point in the history
added to example apps
corrected diagrams
wordsmithed verbiage
  • Loading branch information
mooreds committed Jul 30, 2024
1 parent 21a2f83 commit e944bc6
Show file tree
Hide file tree
Showing 7 changed files with 191 additions and 152 deletions.

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions astro/src/content/json/exampleapps.json
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,12 @@
"description": "Example of SSO between two different custom applications",
"language": "javascript"
},
{
"url": "https://github.com/FusionAuth/fusionauth-example-node-centralized-sessions",
"name": "FusionAuth Centralized Sessions",
"description": "Example of centralized sessions between two different custom applications",
"language": "javascript"
},
{
"url": "https://github.com/FusionAuth/fusionauth-example-node-deeplink",
"name": "Deeplinking",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ sequenceDiagram
cb ->> cb : Session Invalid
cb ->> Browser : Redirect to FusionAuth Because There is No Valid ChangeBank Session
Browser ->> FusionAuth : Request Login Page
FusionAuth ->> FusionAuth : Recognizes Device, No Login Needed
FusionAuth ->> Browser : Redirects to ChangeBank Redirect URL
Browser ->> cb : Requests Redirect URL
cb ->> FusionAuth : Requests Token
FusionAuth ->> FusionAuth : Verifies Token Request
FusionAuth ->> cb : Sends Token
cb ->> Browser : Redirects To Home Page
Browser ->> cb : Request Home Page
cb ->> Browser : Send Home Page
`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ sequenceDiagram
FusionAuth ->> FusionAuth : Destroy FusionAuth Session
FusionAuth ->> cbf : Request Configured Logout URL
cbf ->> cbf : Destroy Local Session
FusionAuth ->> Browser : Redirect to Pied Piper Configured Logout URL
FusionAuth ->> Browser : Redirect to Configured Logout URL
`;
---
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ sequenceDiagram
participant FusionAuth
Browser ->> cb : View Home Page
Browser ->> cb : Click Logout
cb ->> FusionAuth: Revoke Refresh Token(s)
cb ->> FusionAuth: Revoke All Refresh Tokens
cb ->> cb : Destroy Local Session
cb ->> cb : Redirect To Logged Out Page
`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sequenceDiagram
participant Browser
participant cbf as ChangeBank Forum
participant FusionAuth
Browser ->> cb : Request Home Page
Browser ->> cbf : Request Home Page
cbf ->> cbf : Check Application Session Existence
cbf ->> FusionAuth : Check Validity Of Refresh Token
FusionAuth ->> cbf : Refresh Token Invalid
Expand Down

0 comments on commit e944bc6

Please sign in to comment.