Skip to content

Commit 99e094d

Browse files
authored
Added missing param in arrow 8, also refined headers (#5189)
1 parent e5e4cd2 commit 99e094d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/msiv1_token_revocation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
```mermaid
1414
sequenceDiagram
1515
participant Resource
16-
actor Client/Caller (CX)
17-
participant MSAL (Leaf)
18-
participant MITS (Proxy)
19-
participant SFRP (RP)
16+
actor CX as Client/Caller
17+
participant MSAL as MSAL on Leaf
18+
participant MITS as MITS (Proxy)
19+
participant SFRP as SFRP (RP)
2020
participant eSTS
2121
2222
rect rgb(173, 216, 230)
@@ -30,7 +30,7 @@ rect rgb(215, 234, 132)
3030
MSAL->>MSAL: 5. Looks up old token T in local cache
3131
MSAL->>MITS: 6. MITS_endpoint?xms_cc=cp1&token_sha256_to_refresh=SHA256(T)
3232
MITS->>SFRP: 7. (Forward request w/ cc=cp1, hash=SHA256(T))
33-
SFRP->>SFRP: 8. Another MSAL call AcquireTokenForClient(...).WithClientCapabilities(cp1)
33+
SFRP->>SFRP: 8. Another MSAL call AcquireTokenForClient(...).WithClientCapabilities(cp1).WithAccessTokenSha256ToRefresh(hash)
3434
SFRP->>eSTS: 9. eSTS issues a new token
3535
end
3636
```

0 commit comments

Comments
 (0)