Skip to content

Commit

Permalink
fix(jans-linux-setup): added missing values for openbanking (#913)
Browse files Browse the repository at this point in the history
Added a few missing jwt responseType and private_key_jwt token auth method and scopes supported
  • Loading branch information
HemantKMehta committed Mar 1, 2022
1 parent 28c422f commit 1977eec
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,18 @@
"tls_client_certificate_bound_access_tokens",
"mtls_endpoint_aliases"
],
"scopesSupported":[
"openid",
"consents",
"accounts",
"resources"
],
"responseTypesSupported":[
["code", "id_token"]
],
"responseModesSupported":[
"fragment"
"fragment",
"jwt"
],
"grantTypesSupported":[
"client_credentials",
Expand Down Expand Up @@ -133,6 +140,7 @@
],
"tokenEndpointAuthMethodsSupported":[
"client_secret_post",
"private_key_jwt",
"tls_client_auth"
],
"tokenEndpointAuthSigningAlgValuesSupported":[
Expand Down

0 comments on commit 1977eec

Please sign in to comment.