Skip to content

Commit a40b2ab

Browse files
authored
Update flows.md
1 parent b112d5d commit a40b2ab

1 file changed

Lines changed: 10 additions & 14 deletions

File tree

seq/flows.md

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -90,22 +90,18 @@ sequenceDiagram
9090
config:
9191
mirrorActors: false
9292
---
93-
sequenceDiagram
9493
box Domain A
95-
participant E as External IdP
9694
participant C as Client
97-
end
98-
box Domain B
99-
participant KC as Keycloak
100-
participant RS as REST API
101-
end
102-
103-
C->>E: Login
104-
E->>C: ID Token
105-
C->>E: Exchange token
106-
E->>C: ID-JAG
107-
C->>KC: Token request, with ID-JAG
108-
KC->>C: Token response
95+
participant IDP as IdP Authorization Server
96+
participant RSA as Resource Application Authorization Server
97+
participant RS as Resource Application Resource Server
98+
99+
C->>IDP: Login
100+
IDP->>C: ID Token
101+
C->>RSA: Exchange token
102+
RSA->>C: ID-JAG
103+
C->>RSA: Token request, with ID-JAG
104+
RSA->>C: Token response
109105
C->>RS: Request with token
110106
```
111107

0 commit comments

Comments
 (0)