Interface IdPServerResponse

The response from the IdP server with the access token and optional expiration time and refresh token.

interface IdPServerResponse {
    accessToken: string;
    expiresInSeconds?: number;
    refreshToken?: string;
}

Properties

accessToken: string

The OIDC access token.

expiresInSeconds?: number

The time when the access token expires. For future use.

refreshToken?: string

The refresh token, if applicable, to be used by the callback to request a new token from the issuer.