-
Notifications
You must be signed in to change notification settings - Fork 0
/
authorization_server_config.json
64 lines (64 loc) · 1.26 KB
/
authorization_server_config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"scopes_supported": [
"openid"
],
"response_types_supported": [
"vp_token",
"id_token"
],
"response_modes_supported": [
"query"
],
"grant_types_supported": [
"authorization_code",
"urn:ietf:params:oauth:grant-type:pre-authorized_code"
],
"subject_types_supported": [
"public",
"pairwise"
],
"id_token_signing_alg_values_supported": [
"ES256",
"ES256K",
"EdDSA",
"RS256"
],
"request_object_signing_alg_values_supported": [
"ES256",
"ES256K",
"EdDSA",
"RS256"
],
"request_parameter_supported": true,
"request_uri_parameter_supported": true,
"token_endpoint_auth_methods_supported": [
"client_secret_basic",
"client_secret_post",
"client_secret_jwt",
"none"
],
"request_authentication_methods_supported": {
"authorization_endpoint": [
"request_object"
]
},
"subject_syntax_types_supported": [
"urn:ietf:params:oauth:jwk-thumbprint",
"did:key",
"did:ebsi",
"did:pkh",
"did:ethr",
"did:web",
"did:jwk"
],
"subject_syntax_types_discriminations": [
"did:key:jwk_jcs-pub",
"did:ebsi:v1"
],
"subject_trust_frameworks_supported": [
"ebsi"
],
"id_token_types_supported": [
"subject_signed_id_token"
]
}