Explicitly state no support for user info alg

This commit is contained in:
theworldbright 2015-11-06 17:19:42 -08:00
parent f1b394de0f
commit 3440709ec5

View file

@ -29,7 +29,8 @@ module Api
id_token_signing_alg_values_supported: %i(RS256), id_token_signing_alg_values_supported: %i(RS256),
token_endpoint_auth_methods_supported: %w(client_secret_basic client_secret_post private_key_jwt), token_endpoint_auth_methods_supported: %w(client_secret_basic client_secret_post private_key_jwt),
claims_parameter_supported: true, claims_parameter_supported: true,
claims_supported: %w(sub name nickname profile picture) claims_supported: %w(sub name nickname profile picture),
userinfo_signing_alg_values_supported: %w(none)
) )
end end
end end