Edit

Share via


SsoSilentRequest type

Request object passed by user to ssoSilent to retrieve a Code from the server (first leg of authorization code grant flow)

type SsoSilentRequest = Partial<
  Omit<
    CommonAuthorizationUrlRequest,
    | "responseMode"
    | "earJwk"
    | "codeChallenge"
    | "codeChallengeMethod"
    | "platformBroker"
  >
>