pub type ConfiguredClient = BasicClient<EndpointSet, EndpointNotSet, EndpointNotSet, EndpointNotSet, EndpointSet>;Expand description
Type alias for a configured OAuth2 client with auth and token endpoints set
This is the standard client type used by all OAuth2 providers (Google, GitHub, OIDC). The type parameters indicate which endpoints are configured:
EndpointSetforHasAuthUrl- Authorization endpoint is configuredEndpointNotSetforHasDeviceAuthUrl- Device auth not usedEndpointNotSetforHasIntrospectionUrl- Token introspection not usedEndpointNotSetforHasRevocationUrl- Token revocation not usedEndpointSetforHasTokenUrl- Token exchange endpoint is configured
Aliased Typeยง
pub struct ConfiguredClient { /* private fields */ }