Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuthorizationDetails ¶
type OpenIdConfiguration ¶
type OpenIdConfiguration struct { Issuer string `json:"issuer"` Authorization_Endpoint string `json:"authorization_endpoint"` Token_Endpoint string `json:"token_endpoint"` User_Endpoint string `json:"userinfo_endpoint"` Jwks_Uri string `json:"jwks_uri"` Scopes_Supported []string `json:"scopes_supported"` Response_Types_Supported []string `json:"response_types_supported"` Grant_Types_Supported []string `json:"grant_types_supported"` Subject_Types_Supported []string `json:"subject_types_supported"` Id_Token_Signing_Alg_Values_Supported []string `json:"id_token_signing_alg_values_supported"` Id_Token_Encryption_Alg_Values_Supported []string `json:"id_token_encryption_alg_values_supported"` Id_Token_Encryption_Enc_Values_Supported []string `json:"id_token_encryption_enc_values_supported"` Token_Endpoint_Auth_Methods_Supported []string `json:"token_endpoint_auth_methods_supported"` Token_Endpoint_Auth_Signing_Alg_Values_Supported []string `json:"token_endpoint_auth_signing_alg_values_supported"` Claims_Parameter_Supported bool `json:"claims_parameter_supported"` Request_Parameter_Supported bool `json:"request_parameter_supported"` Request_Uri_Parameter_Supported bool `json:"request_uri_parameter_supported"` }
type Token ¶
type Token struct { AccessToken string `json:"access_token"` TokenType string `json:"token_type"` ExpiresIn int64 `json:"expires_in"` CNonce string `json:"c_nonce"` CNonceExpiresIn int64 `json:"c_nonce_expires_in"` AuthorizationDetails *AuthorizationDetails `json:"authorization_details,omitempty"` }
Click to show internal directories.
Click to hide internal directories.