fix: add code_challenge_methods_supported to discovery endpoint

This commit is contained in:
Livio Amstutz 2020-08-20 16:18:31 +02:00
parent 5a8e69978f
commit 68033051ba
4 changed files with 18 additions and 0 deletions

View file

@ -20,5 +20,6 @@ type DiscoveryConfiguration struct {
SubjectTypesSupported []string `json:"subject_types_supported,omitempty"`
IDTokenSigningAlgValuesSupported []string `json:"id_token_signing_alg_values_supported,omitempty"`
TokenEndpointAuthMethodsSupported []string `json:"token_endpoint_auth_methods_supported,omitempty"`
CodeChallengeMethodsSupported []string `json:"code_challenge_methods_supported,omitempty"`
ClaimsSupported []string `json:"claims_supported,omitempty"`
}