CommonEndSessionRequest type

CommonEndSessionRequest

  • account - 将注销的 Account 对象。 将清除绑定到此帐户的所有令牌。
  • postLogoutRedirectUri - 在注销页面后导航到的 URI。
  • correlationId - 每个请求的唯一 GUID 集,用于跟踪用于遥测目的的请求端到端。
  • idTokenHint - B2C 用于验证策略所需的注销的 ID 令牌
  • state - 注销后重定向后将在查询字符串中返回的注销终结点的请求中包含的值
  • logoutHint - 一个字符串,指定要注销的帐户,以便在注销时跳过服务器帐户选取器
  • extraQueryParameters - 添加到 /authorize 调用的自定义查询参数的字符串到字符串映射
type CommonEndSessionRequest = {
  account?: AccountInfo | null
  correlationId: string
  extraQueryParameters?: StringDict
  idTokenHint?: string
  logoutHint?: string
  postLogoutRedirectUri?: string | null
  state?: string
}