13 lines
473 B
Plaintext
13 lines
473 B
Plaintext
%% 백채널 로그아웃은 양쪽이 있어야 한다
|
|
%% question: IdP 쪽만 설정하면 로그아웃이 퍼지는가
|
|
flowchart TB
|
|
n0(["한 앱의 로그아웃"])
|
|
n1["backchannelLogoutUrl"]
|
|
n2["앱의 수신 엔드포인트"]
|
|
n3["다른 앱의 세션"]
|
|
n0 -->|"통지 주소 조회"| n1
|
|
n1 -->|"호출 (주소 필요)"| n2
|
|
n2 -->|"세션 삭제 (엔드포인트 필요)"| n3
|
|
classDef external stroke-dasharray: 6 4
|
|
class n0 external
|