| Maintainer | krdlab@gmail.com |
|---|---|
| Stability | experimental |
| Safe Haskell | None |
| Language | Haskell2010 |
Web.OIDC.Client.Discovery
Description
- discover :: IssuerLocation -> Manager -> IO Provider
- google :: IssuerLocation
- data Provider = Provider {
- configuration :: Configuration
- jwkSet :: [Jwk]
- data Configuration = Configuration {
- issuer :: IssuerLocation
- authorizationEndpoint :: Text
- tokenEndpoint :: Text
- userinfoEndpoint :: Text
- revocationEndpoint :: Text
- jwksUri :: Text
- responseTypesSupported :: [Text]
- subjectTypesSupported :: [Text]
- idTokenSigningAlgValuesSupported :: [Text]
- scopesSupported :: [ScopeValue]
- tokenEndpointAuthMethodsSupported :: [Text]
- claimsSupported :: [Text]
Documentation
Arguments
| :: IssuerLocation | OpenID Provider's Issuer location |
| -> Manager | |
| -> IO Provider |
This function obtains OpenID Provider configuration and JWK set.
OpenID Provider Issuers
OpenID Provider Configuration Information
An OpenID Provider information
Constructors
| Provider | |
Fields
| |
data Configuration Source
An OpenID Provider Configuration
Constructors
| Configuration | |
Fields
| |