pub type DiscoveredUma2Client = Client<DiscoveredUma2, StandardClaims>;Expand description
Aliased Type§
pub struct DiscoveredUma2Client {
pub provider: DiscoveredUma2,
pub client_id: String,
pub client_secret: Option<String>,
pub redirect_uri: Option<String>,
pub http_client: Client,
pub jwks: Option<JWKSet<Empty>>,
pub pkce: Option<Pkce>,
/* private fields */
}Fields§
§provider: DiscoveredUma2OAuth provider.
client_id: StringClient ID.
client_secret: Option<String>Client secret.
redirect_uri: Option<String>Redirect URI.
http_client: ClientReqwest client used to send HTTP requests.
jwks: Option<JWKSet<Empty>>The set of JSON Web Keys for this client. They will be discovered via an OIDC discovery process.
pkce: Option<Pkce>PKCE parameters.