Created
March 22, 2022 22:35
-
-
Save shorif2000/a97d3c0809858e8aaebd6aaf5132f636 to your computer and use it in GitHub Desktop.
IR - auth
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sequenceDiagram | |
actor User | |
User->>+webApi: POST login form | |
webApi->>+resultsApi: POST auth request | |
resultsApi->>+resultsApi: GET oauth code and save in db | |
resultsApi-->>-resultsApi: POST token request save cred | |
resultsApi->>-webApi: return response with jwt | |
webApi-->>webApi: process redirection | |
webApi->>-User: send to user |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment