-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathproject.json
62 lines (62 loc) · 2.16 KB
/
project.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
{
"projectName": "agama-openid",
"description": "Authentication using an external OpenID Connect provider with the 'code' flow",
"type": "community",
"author": "GluuFederation",
"version": "1.3.0",
"authorWebsite": "https://github.com/GluuFederation/agama-openid",
"githubUri": "https://github.com/GluuFederation/agama-openid",
"license": "apache-2.0",
"lastUpdated": "1699278900783",
"tags": [
"openid-connect",
"jans"
],
"noDirectLaunch": [
"io.jans.inbound.oauth2.AuthzCode",
"io.jans.inbound.oauth2.AuthzCodeWithUserInfo",
"org.gluu.inbound.oauth2.AuthzCode",
"org.gluu.inbound.oauth2.AuthzCodeWithUserInfo"
],
"configs": {
"org.gluu.inbound.oauth2.AuthzCode": {},
"org.gluu.inbound.oauth2.AuthzCodeWithUserInfo": {},
"org.gluu.inbound.openid": {
"org.gluu.inbound.openid": {
"Gluu": {
"host": "https://my.gluu.co",
"dcr": {
"enabled": true,
"useCachedClient": true
},
"oauth": {
"scopes": [
"openid"
]
},
"provision": {
"uidPrefix": "gluu-",
"attribute": "sub"
}
},
"Github": {
"oauth": {
"authzEndpoint": "https://github.com/login/oauth/authorize",
"tokenEndpoint": "https://github.com/login/oauth/access_token",
"userInfoEndpoint": "https://api.github.com/user",
"clientId": "mangled",
"clientSecret": "twisted",
"scopes": [
"user"
]
},
"provision": {
"uidPrefix": "github-",
"attribute": "login"
}
}
}
}
},
"name": "agama-openid"
}