forked from alemarte/cas-service-registry-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
oidc-service-registry-introspect2.json
47 lines (47 loc) · 1.44 KB
/
oidc-service-registry-introspect2.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
{
"@class" : "org.apereo.cas.services.OidcRegisteredService",
"clientId": "client4",
"clientSecret": "secret4",
"serviceId" : "http://localhost:8080/server/api/authn/oidc1",
"implicit": true,
"signIdToken": true,
"idTokenSigningAlg": "RS256",
"name": "ClientName2",
"id": 4,
"generateRefreshToken": true,
"jwtAccessToken": true,
"supportedGrantTypes": [ "java.util.HashSet", [ "authorization_code" ] ],
"supportedResponseTypes": [ "java.util.HashSet", [ "code" ] ],
"scopes" : [ "java.util.HashSet",
[ "profile", "email", "pgc-role", "openid" ]
],
"attributeReleasePolicy": {
"@class": "org.apereo.cas.services.ChainingAttributeReleasePolicy",
"policies": [
"java.util.ArrayList",
[
{
"@class" : "org.apereo.cas.services.ReturnAllowedAttributeReleasePolicy",
"allowedAttributes" : [ "java.util.ArrayList", [ "pgc-role" ] ],
"order":0
},
{
"@class": "org.apereo.cas.oidc.claims.OidcEmailScopeAttributeReleasePolicy",
"order":1
},
{
"@class": "org.apereo.cas.oidc.claims.OidcProfileScopeAttributeReleasePolicy",
"order":2
},
{
"@class": "org.apereo.cas.oidc.claims.OidcAddressScopeAttributeReleasePolicy",
"order":3
},
{
"@class": "org.apereo.cas.oidc.claims.OidcPhoneScopeAttributeReleasePolicy",
"order":4
}
]
]
}
}