OpenIdConnectConfig Class

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

Constructor

OpenIdConnectConfig(*args: Any, **kwargs: Any)

Variables

Name Description
authorization_endpoint
str

The endpoint to be used to make an authorization request.

token_endpoint
str

The endpoint to be used to request a token.

issuer
str

The endpoint that issues the token.

certification_uri
str

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

well_known_open_id_configuration
str

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

Attributes

authorization_endpoint

The endpoint to be used to make an authorization request.

authorization_endpoint: str | None

certification_uri

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

certification_uri: str | None

issuer

The endpoint that issues the token.

issuer: str | None

token_endpoint

The endpoint to be used to request a token.

token_endpoint: str | None

well_known_open_id_configuration

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

well_known_open_id_configuration: str | None