-
Notifications
You must be signed in to change notification settings - Fork 18
/
Config.toml
46 lines (45 loc) · 1.33 KB
/
Config.toml
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
[configs]
# The discoveryEndpoint provided below is for a sample OIDC server. Please replace it with your own OIDC server's discovery endpoint.
discoveryEndpoint = "https://api.asgardeo.io/t/bifrost/oauth2/token/.well-known/openid-configuration"
[configs.smartConfiguration]
tokenEndpoint = "<TOKEN_ENDPOINT>"
introspectionEndpoint = "<INTROSPECTION_ENDPOINT>"
codeChallengeMethodsSupported = ["S256"]
grantTypesSupported = ["authorization_code"]
revocationEndpoint = "<REVOCATION_ENDPOINT>"
tokenEndpointAuthMethodsSupported = ["private_key_jwt", "client_secret_basic"]
tokenEndpointAuthSigningAlgValuesSupported = ["RS384","ES384"]
scopesSupported = [
"openid",
"fhirUser",
"launch",
"launch/patient",
"patient/*.cruds",
"user/*.cruds",
"offline_access",
]
responseTypesSupported = [
"code",
"id_token",
"token",
"device",
"id_token token"
]
capabilities = [
"launch-ehr",
"launch-standalone",
"client-public",
"client-confidential-symmetric",
"client-confidential-asymmetric",
"context-passthrough-banner",
"context-passthrough-style",
"context-ehr-patient",
"context-ehr-encounter",
"context-standalone-patient",
"context-standalone-encounter",
"permission-offline",
"permission-patient",
"permission-user",
"permission-v2",
"authorize-post"
]