Trait tiny_oidc_rp::Provider [−][src]
pub trait Provider: Send + Sync + Sized {
fn authorization_endpoint(&self) -> Url;
fn token_endpoint(&self) -> Url;
fn validate_iss(&self, iss: &str) -> bool;
fn client(self) -> ClientBuilder<Self> { ... }
}Expand description
OpenID Connect ID provider issuer
