Interface IdPInfo

The information returned by the server on the IDP server.

interface IdPInfo {
    clientId: string;
    issuer: string;
    requestScopes?: string[];
}

Properties

clientId: string

A unique client ID for this OIDC client.

issuer: string

A URL which describes the Authentication Server. This identifier should be the iss of provided access tokens, and be viable for RFC8414 metadata discovery and RFC9207 identification.

requestScopes?: string[]

A list of additional scopes to request from IdP.