chore: 문서를 작성할 때 한국어의 표현 작성 스킬 추가 및 1인칭 관점의 글 작성 검증 테스트 추가

This commit is contained in:
DongHyeonka
2026-07-29 16:48:03 +09:00
parent c39406bbdd
commit 41501b5d06
520 changed files with 95494 additions and 2231 deletions
@@ -0,0 +1,16 @@
%% AP3는 browser session을 BFF-owned Bearer 요청으로 바꾼다
%% question: AP3에서 OAuth token 없는 브라우저 요청은 어느 경계를 지나 내부 Resource Server Bearer 요청이 되는가?
flowchart LR
subgraph g_browser_session_zone["Browser session boundary"]
n0(["Browser"])
end
subgraph g_server_application_zone["Server-side application path"]
n1["Spring BFF"]
n2[("Authorized-client store")]
n3["Internal Resource Server"]
end
n0 -->|"AP3_SESSION · /bff/api/me"| n1
n1 -->|"현재 authorized client 조회"| n2
n1 -->|"downstream Bearer 요청"| n3
classDef external stroke-dasharray: 6 4
class n0 external