fix: 为失效 OIDC 事务提供安全重试

细分回调事务、状态和授权响应错误,提供脱敏诊断编号与显式重新登录入口,避免失效事务形成重试循环。
This commit is contained in:
2026-07-13 22:50:09 +08:00
parent 6e0a5fe397
commit 8ca68eb3cd
8 changed files with 314 additions and 15 deletions
+18
View File
@@ -859,6 +859,24 @@ strong {
font-size: var(--font-size-sm);
}
.oidcCallbackNotice {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.oidcCallbackMessage {
display: grid;
gap: 4px;
}
.oidcCallbackMessage small {
color: inherit;
opacity: 0.72;
}
.statGrid {
grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}