Package version:

Interface OpenIdConnectConfig

The configuration settings of the endpoints used for the custom Open ID Connect provider.

interface OpenIdConnectConfig {
    authorizationEndpoint?: string;
    certificationUri?: string;
    issuer?: string;
    tokenEndpoint?: string;
    wellKnownOpenIdConfiguration?: string;
}

Properties

authorizationEndpoint?: string

The endpoint to be used to make an authorization request.

certificationUri?: string

The endpoint that provides the keys necessary to validate the token.

issuer?: string

The endpoint that issues the token.

tokenEndpoint?: string

The endpoint to be used to request a token.

wellKnownOpenIdConfiguration?: string

The endpoint that contains all the configuration endpoints for the provider.