Skip to content

Commit 25bb040

Browse files
committed
Sequence Diagram of Token Retrieval Procedure
1 parent 7b85e30 commit 25bb040

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

diagrams/Java Client OIDC Flow.puml

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
@startuml Login
2+
'https://plantuml.com/sequence-diagram
3+
4+
title VCell App OIDC Authentication
5+
6+
autonumber
7+
box Local Machine #LightBlue
8+
control "Local Host"
9+
actor VCell
10+
participant Browser
11+
end box
12+
13+
entity Auth0
14+
15+
== Gather Information and Prepare ==
16+
note over Auth0: For this to work, the callback URL "localhost" must\nbe placed as and accepted callback URL in Auth0
17+
note over "Local Host": Only used to be a listening \nendpoint for Auth0's redirection
18+
19+
VCell -> Auth0: Request OIDC Metadata
20+
Auth0 --> VCell: Return OIDC Metadata
21+
22+
activate VCell
23+
VCell -> VCell: Find an open port
24+
VCell -> VCell: Create code verifier
25+
VCell -> VCell: Create the authorization request URI with challenge code,\nscopes, clientID, redirect URI
26+
VCell -> "Local Host": Create local host server listening\nfor Auth0 callback.
27+
deactivate VCell
28+
29+
== Make Requests ==
30+
31+
VCell -> Browser: Open the authorization request URI in the users browser
32+
33+
34+
group Not Logged In vs. Logged In
35+
else Not Logged In
36+
Browser -> Auth0: Request login/authorization
37+
Auth0 --> Browser: Display Auth0 Login Screen
38+
Browser -> Auth0: Authenticate
39+
Auth0 --> Browser: Redirect to local host\nwith exchange code
40+
else Logged In
41+
Browser -> Auth0: Send cookies
42+
Auth0 --> Browser: Redirect to local host\nwith exchange code
43+
end
44+
45+
46+
Browser --> "Local Host": Receive exchange code
47+
"Local Host" -> VCell: Process exchange code
48+
VCell -> Auth0: Give exchange code with previously created challenge code
49+
activate Auth0
50+
Auth0 -> Auth0: Verify the challenge code
51+
Auth0 --> VCell: Receive ID, access, and refresh token
52+
deactivate Auth0
53+
54+
VCell -> VCell: Create an HTTP client with tokens, that automatically \nrefreshes access token
55+
56+
57+
58+
59+
60+
@enduml

0 commit comments

Comments
 (0)