@rockcarver/frodo-lib 0.16.2-2 → 0.16.2-3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. package/CHANGELOG.md +5 -1
  2. package/cjs/api/AgentApi.js +221 -0
  3. package/cjs/api/AgentApi.js.map +1 -0
  4. package/cjs/api/AgentApi.test.js.map +1 -0
  5. package/cjs/api/ApiTypes.js.map +1 -1
  6. package/cjs/api/BaseApi.js +15 -11
  7. package/cjs/api/BaseApi.js.map +1 -1
  8. package/cjs/index.js +5 -1
  9. package/cjs/index.js.map +1 -1
  10. package/cjs/ops/AgentOps.js +805 -0
  11. package/cjs/ops/AgentOps.js.map +1 -0
  12. package/cjs/ops/AgentOps.test.js.map +1 -0
  13. package/cjs/ops/AuthenticateOps.js +8 -8
  14. package/cjs/ops/AuthenticateOps.js.map +1 -1
  15. package/cjs/ops/JourneyOps.test.js.map +1 -1
  16. package/cjs/ops/OpsTypes.js.map +1 -1
  17. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +22 -0
  18. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  19. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  20. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +32 -0
  21. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/J2EEAgent/javaAgent.json +623 -0
  22. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/J2EEAgent/tomcatagent.json +630 -0
  23. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/WebAgent/apacheagent.json +456 -0
  24. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/WebAgent/webserver.json +455 -0
  25. package/cjs/test/mocks/AgentApi/findAgentById/ajays_client.json +19 -0
  26. package/cjs/test/mocks/AgentApi/findAgentById/apacheagent.json +142 -0
  27. package/cjs/test/mocks/AgentApi/findAgentById/api_client.json +19 -0
  28. package/cjs/test/mocks/AgentApi/findAgentById/ig_chico.json +19 -0
  29. package/cjs/test/mocks/AgentApi/findAgentById/ig_mytestrun_com.json +29 -0
  30. package/cjs/test/mocks/AgentApi/findAgentById/javaAgent.json +190 -0
  31. package/cjs/test/mocks/AgentApi/findAgentById/tomcatagent.json +191 -0
  32. package/cjs/test/mocks/AgentApi/findAgentById/webserver.json +144 -0
  33. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +23 -0
  34. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  35. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  36. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +33 -0
  37. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/J2EEAgent/javaAgent.json +193 -0
  38. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/J2EEAgent/tomcatagent.json +195 -0
  39. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/WebAgent/apacheagent.json +145 -0
  40. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/WebAgent/webserver.json +148 -0
  41. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/not_found.json +8 -0
  42. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +22 -0
  43. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  44. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  45. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +32 -0
  46. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/J2EEAgent/javaAgent.json +623 -0
  47. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/J2EEAgent/tomcatagent.json +630 -0
  48. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/WebAgent/apacheagent.json +456 -0
  49. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/WebAgent/webserver.json +455 -0
  50. package/cjs/test/mocks/AgentApi/getAgentTypes/agentTypes.json +54 -0
  51. package/cjs/test/mocks/AgentApi/getAgents/agents.json +3862 -0
  52. package/cjs/test/mocks/AgentApi/getAgentsByType/IdentityGatewayAgents.json +73 -0
  53. package/cjs/test/mocks/AgentApi/getAgentsByType/J2EEAgents.json +379 -0
  54. package/cjs/test/mocks/AgentApi/getAgentsByType/WebAgents.json +284 -0
  55. package/cjs/test/mocks/ForgeRockApiMockEngine.js +147 -20
  56. package/cjs/test/mocks/ForgeRockApiMockEngine.js.map +1 -1
  57. package/esm/api/AgentApi.mjs +164 -0
  58. package/esm/api/AgentApi.test.mjs +267 -0
  59. package/esm/api/BaseApi.mjs +16 -4
  60. package/esm/index.mjs +2 -0
  61. package/esm/ops/AgentOps.mjs +576 -0
  62. package/esm/ops/AgentOps.test.mjs +1212 -0
  63. package/esm/ops/AuthenticateOps.mjs +8 -8
  64. package/esm/ops/JourneyOps.test.mjs +4 -8
  65. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +22 -0
  66. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  67. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  68. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +32 -0
  69. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/J2EEAgent/javaAgent.json +623 -0
  70. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/J2EEAgent/tomcatagent.json +630 -0
  71. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/WebAgent/apacheagent.json +456 -0
  72. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/WebAgent/webserver.json +455 -0
  73. package/esm/test/mocks/AgentApi/findAgentById/ajays_client.json +19 -0
  74. package/esm/test/mocks/AgentApi/findAgentById/apacheagent.json +142 -0
  75. package/esm/test/mocks/AgentApi/findAgentById/api_client.json +19 -0
  76. package/esm/test/mocks/AgentApi/findAgentById/ig_chico.json +19 -0
  77. package/esm/test/mocks/AgentApi/findAgentById/ig_mytestrun_com.json +29 -0
  78. package/esm/test/mocks/AgentApi/findAgentById/javaAgent.json +190 -0
  79. package/esm/test/mocks/AgentApi/findAgentById/tomcatagent.json +191 -0
  80. package/esm/test/mocks/AgentApi/findAgentById/webserver.json +144 -0
  81. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +23 -0
  82. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  83. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  84. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +33 -0
  85. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/J2EEAgent/javaAgent.json +193 -0
  86. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/J2EEAgent/tomcatagent.json +195 -0
  87. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/WebAgent/apacheagent.json +145 -0
  88. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/WebAgent/webserver.json +148 -0
  89. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/not_found.json +8 -0
  90. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +22 -0
  91. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  92. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  93. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +32 -0
  94. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/J2EEAgent/javaAgent.json +623 -0
  95. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/J2EEAgent/tomcatagent.json +630 -0
  96. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/WebAgent/apacheagent.json +456 -0
  97. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/WebAgent/webserver.json +455 -0
  98. package/esm/test/mocks/AgentApi/getAgentTypes/agentTypes.json +54 -0
  99. package/esm/test/mocks/AgentApi/getAgents/agents.json +3862 -0
  100. package/esm/test/mocks/AgentApi/getAgentsByType/IdentityGatewayAgents.json +73 -0
  101. package/esm/test/mocks/AgentApi/getAgentsByType/J2EEAgents.json +379 -0
  102. package/esm/test/mocks/AgentApi/getAgentsByType/WebAgents.json +284 -0
  103. package/esm/test/mocks/ForgeRockApiMockEngine.mjs +136 -20
  104. package/package.json +2 -2
  105. package/types/api/AgentApi.d.ts +51 -0
  106. package/types/api/AgentApi.d.ts.map +1 -0
  107. package/types/api/ApiTypes.d.ts +3 -0
  108. package/types/api/ApiTypes.d.ts.map +1 -1
  109. package/types/api/BaseApi.d.ts.map +1 -1
  110. package/types/index.d.ts +2 -0
  111. package/types/index.d.ts.map +1 -1
  112. package/types/ops/AgentOps.d.ts +210 -0
  113. package/types/ops/AgentOps.d.ts.map +1 -0
  114. package/types/ops/AuthenticateOps.d.ts.map +1 -1
  115. package/types/ops/OpsTypes.d.ts +5 -1
  116. package/types/ops/OpsTypes.d.ts.map +1 -1
  117. package/types/test/mocks/ForgeRockApiMockEngine.d.ts +35 -2
  118. package/types/test/mocks/ForgeRockApiMockEngine.d.ts.map +1 -1
@@ -0,0 +1,3862 @@
1
+ {
2
+ "result": [
3
+ {
4
+ "miscWebAgentConfig": {
5
+ "anonymousUserId": "anonymous",
6
+ "profileAttributesCookieMaxAge": 300,
7
+ "urlJsonResponse": [
8
+ ""
9
+ ],
10
+ "caseInsensitiveUrlComparison": true,
11
+ "compositeAdviceRedirect": false,
12
+ "compositeAdviceEncode": false,
13
+ "addCacheControlHeader": true,
14
+ "anonymousUserEnabled": false,
15
+ "invalidUrlRegex": null,
16
+ "ignorePathInfo": false,
17
+ "invertUrlJsonResponse": false,
18
+ "statusCodeJsonResponse": 202,
19
+ "headerJsonResponse": {},
20
+ "encodeSpecialCharsInCookies": false,
21
+ "gotoParameterName": "goto",
22
+ "encodeUrlSpecialCharacters": false,
23
+ "mineEncodeHeader": 0,
24
+ "profileAttributesCookiePrefix": "HTTP_"
25
+ },
26
+ "ssoWebAgentConfig": {
27
+ "cookieResetList": [
28
+ ""
29
+ ],
30
+ "cdssoRedirectUri": "agent/cdsso-oauth2",
31
+ "persistentJwtCookie": false,
32
+ "acceptSsoToken": false,
33
+ "secureCookies": false,
34
+ "cookieResetOnRedirect": false,
35
+ "sameSite": null,
36
+ "cdssoCookieDomain": [
37
+ ""
38
+ ],
39
+ "cookieResetEnabled": false,
40
+ "cookieName": "iPlanetDirectoryPro",
41
+ "multivaluePreAuthnCookie": false,
42
+ "httpOnly": true
43
+ },
44
+ "advancedWebAgentConfig": {
45
+ "overrideRequestHost": true,
46
+ "pdpSkipPostUrl": [
47
+ ""
48
+ ],
49
+ "pdpStickySessionValue": null,
50
+ "postDataPreservation": false,
51
+ "hostnameToIpAddress": [],
52
+ "showPasswordInHeader": false,
53
+ "overrideRequestProtocol": true,
54
+ "clientIpHeader": null,
55
+ "replayPasswordKey": null,
56
+ "customProperties": [],
57
+ "postDataCachePeriod": 10,
58
+ "retainSessionCache": false,
59
+ "pdpJavascriptRepost": false,
60
+ "pdpStickySessionMode": "OFF",
61
+ "overrideRequestPort": true,
62
+ "apacheAuthDirectives": null,
63
+ "fragmentRedirectEnabled": false,
64
+ "clientHostnameHeader": null,
65
+ "pdpStickySessionCookieName": null,
66
+ "logonAndImpersonation": false
67
+ },
68
+ "amServicesWebAgent": {
69
+ "policyClockSkew": 0,
70
+ "enableLogoutRegex": false,
71
+ "policyEvaluationRealm": "/alpha",
72
+ "fetchPoliciesFromRootResource": false,
73
+ "logoutUrlRegex": null,
74
+ "conditionalLoginUrl": [
75
+ "mytestrun.com|https://idc.scheuber.io:443/am/oauth2/authorize?realm=/alpha"
76
+ ],
77
+ "customLoginMode": 0,
78
+ "invalidateLogoutSession": true,
79
+ "logoutResetCookies": [
80
+ ""
81
+ ],
82
+ "logoutRedirectUrl": null,
83
+ "regexConditionalLoginUrl": [
84
+ ""
85
+ ],
86
+ "policyCachePollingInterval": 3,
87
+ "regexConditionalLoginPattern": [
88
+ ""
89
+ ],
90
+ "logoutRedirectDisabled": false,
91
+ "retrieveClientHostname": false,
92
+ "applicationLogoutUrls": [
93
+ ""
94
+ ],
95
+ "userIdParameterType": "session",
96
+ "publicAmUrl": null,
97
+ "userIdParameter": "UserToken",
98
+ "amLoginUrl": [
99
+ "https://idc.scheuber.io/login?realm=/alpha"
100
+ ],
101
+ "policyEvaluationApplication": "apps",
102
+ "amLogoutUrl": [
103
+ "https://idc.scheuber.io:443/am/UI/Logout"
104
+ ],
105
+ "ssoCachePollingInterval": 3
106
+ },
107
+ "applicationWebAgentConfig": {
108
+ "profileAttributeFetchMode": "NONE",
109
+ "clientIpValidation": false,
110
+ "notEnforcedIpsRegex": false,
111
+ "continuousSecurityCookies": {},
112
+ "fetchAttributesForNotEnforcedUrls": false,
113
+ "ignorePathInfoForNotEnforcedUrls": true,
114
+ "responseAttributeFetchMode": "NONE",
115
+ "attributeMultiValueSeparator": "|",
116
+ "profileAttributeMap": {},
117
+ "sessionAttributeFetchMode": "NONE",
118
+ "continuousSecurityHeaders": {},
119
+ "notEnforcedIpsList": [
120
+ ""
121
+ ],
122
+ "responseAttributeMap": {},
123
+ "notEnforcedUrls": [
124
+ "",
125
+ "https://apps.mytestrun.com/app1/*"
126
+ ],
127
+ "sessionAttributeMap": {},
128
+ "notEnforcedUrlsRegex": false,
129
+ "invertNotEnforcedUrls": false,
130
+ "notEnforcedIps": [
131
+ ""
132
+ ]
133
+ },
134
+ "globalWebAgentConfig": {
135
+ "agentDebugLevel": "Info",
136
+ "fqdnDefault": "apps.mytestrun.com",
137
+ "userpassword": null,
138
+ "webSocketConnectionIntervalInMinutes": 30,
139
+ "status": "Active",
140
+ "configurationPollingInterval": 60,
141
+ "auditLogLocation": "ALL",
142
+ "fqdnCheck": false,
143
+ "amLbCookieEnable": false,
144
+ "fqdnMapping": {},
145
+ "accessDeniedUrl": null,
146
+ "resetIdleTime": false,
147
+ "auditAccessType": "LOG_BOTH",
148
+ "ssoOnlyMode": false,
149
+ "notificationsEnabled": true,
150
+ "agentUriPrefix": "https://apps.mytestrun.com:443/amagent",
151
+ "disableJwtAudit": false,
152
+ "jwtName": "am-auth-jwt",
153
+ "repositoryLocation": "centralized",
154
+ "cdssoRootUrl": [
155
+ "agentRootURL=https://apps.mytestrun.com:443/"
156
+ ],
157
+ "agentConfigChangeNotificationsEnabled": true,
158
+ "jwtAuditWhitelist": null
159
+ },
160
+ "_id": "apacheagent",
161
+ "_type": {
162
+ "_id": "WebAgent",
163
+ "name": "Web Agents",
164
+ "collection": true
165
+ }
166
+ },
167
+ {
168
+ "miscWebAgentConfig": {
169
+ "anonymousUserId": "anonymous",
170
+ "profileAttributesCookieMaxAge": 300,
171
+ "urlJsonResponse": [
172
+ ""
173
+ ],
174
+ "caseInsensitiveUrlComparison": true,
175
+ "compositeAdviceRedirect": false,
176
+ "compositeAdviceEncode": false,
177
+ "addCacheControlHeader": false,
178
+ "anonymousUserEnabled": false,
179
+ "invalidUrlRegex": null,
180
+ "ignorePathInfo": false,
181
+ "invertUrlJsonResponse": false,
182
+ "statusCodeJsonResponse": 202,
183
+ "headerJsonResponse": {},
184
+ "encodeSpecialCharsInCookies": false,
185
+ "gotoParameterName": "goto",
186
+ "encodeUrlSpecialCharacters": false,
187
+ "mineEncodeHeader": 0,
188
+ "profileAttributesCookiePrefix": "HTTP_"
189
+ },
190
+ "advancedWebAgentConfig": {
191
+ "overrideRequestHost": false,
192
+ "pdpSkipPostUrl": [
193
+ ""
194
+ ],
195
+ "pdpStickySessionValue": null,
196
+ "postDataPreservation": false,
197
+ "hostnameToIpAddress": [],
198
+ "showPasswordInHeader": false,
199
+ "overrideRequestProtocol": false,
200
+ "clientIpHeader": null,
201
+ "replayPasswordKey": null,
202
+ "customProperties": [],
203
+ "postDataCachePeriod": 10,
204
+ "retainSessionCache": false,
205
+ "pdpJavascriptRepost": false,
206
+ "pdpStickySessionMode": "OFF",
207
+ "overrideRequestPort": false,
208
+ "apacheAuthDirectives": null,
209
+ "clientHostnameHeader": null,
210
+ "fragmentRedirectEnabled": false,
211
+ "pdpStickySessionCookieName": null,
212
+ "logonAndImpersonation": false
213
+ },
214
+ "ssoWebAgentConfig": {
215
+ "cookieResetList": [
216
+ ""
217
+ ],
218
+ "cdssoRedirectUri": "agent/cdsso-oauth2",
219
+ "persistentJwtCookie": false,
220
+ "secureCookies": false,
221
+ "acceptSsoToken": false,
222
+ "cookieResetOnRedirect": false,
223
+ "sameSite": null,
224
+ "cdssoCookieDomain": [
225
+ ""
226
+ ],
227
+ "cookieResetEnabled": false,
228
+ "cookieName": "iPlanetDirectoryPro",
229
+ "multivaluePreAuthnCookie": false,
230
+ "httpOnly": true
231
+ },
232
+ "amServicesWebAgent": {
233
+ "policyClockSkew": 0,
234
+ "enableLogoutRegex": false,
235
+ "policyEvaluationRealm": "/alpha",
236
+ "fetchPoliciesFromRootResource": false,
237
+ "logoutUrlRegex": null,
238
+ "conditionalLoginUrl": [
239
+ "|https://openam-volker-dev.forgeblocks.com:443/am/oauth2/authorize?realm=/alpha"
240
+ ],
241
+ "customLoginMode": 0,
242
+ "invalidateLogoutSession": true,
243
+ "logoutResetCookies": [
244
+ ""
245
+ ],
246
+ "logoutRedirectUrl": null,
247
+ "regexConditionalLoginUrl": [
248
+ ""
249
+ ],
250
+ "policyCachePollingInterval": 3,
251
+ "regexConditionalLoginPattern": [
252
+ ""
253
+ ],
254
+ "logoutRedirectDisabled": false,
255
+ "retrieveClientHostname": false,
256
+ "applicationLogoutUrls": [
257
+ ""
258
+ ],
259
+ "userIdParameterType": "session",
260
+ "publicAmUrl": null,
261
+ "userIdParameter": "UserToken",
262
+ "amLoginUrl": [],
263
+ "policyEvaluationApplication": null,
264
+ "amLogoutUrl": [
265
+ "https://openam-volker-dev.forgeblocks.com:443/am/UI/Logout"
266
+ ],
267
+ "ssoCachePollingInterval": 3
268
+ },
269
+ "applicationWebAgentConfig": {
270
+ "profileAttributeFetchMode": "NONE",
271
+ "clientIpValidation": false,
272
+ "notEnforcedIpsRegex": false,
273
+ "continuousSecurityCookies": {},
274
+ "fetchAttributesForNotEnforcedUrls": false,
275
+ "ignorePathInfoForNotEnforcedUrls": true,
276
+ "responseAttributeFetchMode": "NONE",
277
+ "attributeMultiValueSeparator": "|",
278
+ "profileAttributeMap": {},
279
+ "sessionAttributeFetchMode": "NONE",
280
+ "continuousSecurityHeaders": {},
281
+ "notEnforcedIpsList": [
282
+ ""
283
+ ],
284
+ "responseAttributeMap": {},
285
+ "notEnforcedUrls": [
286
+ ""
287
+ ],
288
+ "sessionAttributeMap": {},
289
+ "notEnforcedUrlsRegex": false,
290
+ "invertNotEnforcedUrls": false,
291
+ "notEnforcedIps": [
292
+ ""
293
+ ]
294
+ },
295
+ "globalWebAgentConfig": {
296
+ "agentDebugLevel": "Error",
297
+ "fqdnDefault": "www.mytestrun.com",
298
+ "userpassword": null,
299
+ "webSocketConnectionIntervalInMinutes": 30,
300
+ "status": "Active",
301
+ "configurationPollingInterval": 60,
302
+ "auditLogLocation": "REMOTE",
303
+ "fqdnCheck": false,
304
+ "amLbCookieEnable": false,
305
+ "fqdnMapping": {},
306
+ "accessDeniedUrl": null,
307
+ "resetIdleTime": false,
308
+ "ssoOnlyMode": false,
309
+ "auditAccessType": "LOG_NONE",
310
+ "agentgroup": null,
311
+ "notificationsEnabled": true,
312
+ "agentUriPrefix": "https://www.mytestrun.com:443/amagent",
313
+ "disableJwtAudit": false,
314
+ "jwtName": "am-auth-jwt",
315
+ "repositoryLocation": "centralized",
316
+ "cdssoRootUrl": [
317
+ "agentRootURL=https://www.mytestrun.com:443/"
318
+ ],
319
+ "agentConfigChangeNotificationsEnabled": true,
320
+ "jwtAuditWhitelist": null
321
+ },
322
+ "_id": "webserver",
323
+ "_type": {
324
+ "_id": "WebAgent",
325
+ "name": "Web Agents",
326
+ "collection": true
327
+ }
328
+ },
329
+ {
330
+ "ssoJ2EEAgentConfig": {
331
+ "encodeCookies": false,
332
+ "cookieResetDomains": {},
333
+ "authExchangeUri": null,
334
+ "authExchangeCookieName": null,
335
+ "setCookieInternalMap": {},
336
+ "excludedUserAgentsList": [],
337
+ "cdssoRedirectUri": "/agent/post-authn-redirect",
338
+ "cookieResetPaths": {},
339
+ "cdssoSecureCookies": false,
340
+ "acceptSsoTokenEnabled": false,
341
+ "acceptSsoTokenDomainList": [
342
+ ""
343
+ ],
344
+ "cdssoDomainList": [
345
+ ""
346
+ ],
347
+ "setCookieAttributeMap": {},
348
+ "cookieResetEnabled": false,
349
+ "cookieResetNames": [
350
+ ""
351
+ ],
352
+ "acceptIPDPCookie": false,
353
+ "httpOnly": true
354
+ },
355
+ "amServicesJ2EEAgent": {
356
+ "urlPolicyEnvPostParameters": [
357
+ ""
358
+ ],
359
+ "policyEvaluationRealm": "/",
360
+ "authServiceHost": "openam-volker-dev.forgeblocks.com",
361
+ "policyNotifications": true,
362
+ "conditionalLoginUrl": [
363
+ ""
364
+ ],
365
+ "customLoginEnabled": false,
366
+ "legacyLoginUrlList": [
367
+ ""
368
+ ],
369
+ "agentAdviceEncode": false,
370
+ "authServicePort": 443,
371
+ "urlPolicyEnvGetParameters": [
372
+ ""
373
+ ],
374
+ "restrictToRealm": {},
375
+ "urlPolicyEnvJsessionParameters": [
376
+ ""
377
+ ],
378
+ "amLoginUrl": [],
379
+ "conditionalLogoutUrl": [
380
+ ""
381
+ ],
382
+ "authServiceProtocol": "https",
383
+ "policyEvaluationApplication": "iPlanetAMWebAgentService",
384
+ "authSuccessRedirectUrl": false,
385
+ "overridePolicyEvaluationRealmEnabled": false
386
+ },
387
+ "globalJ2EEAgentConfig": {
388
+ "userTokenName": "UserToken",
389
+ "fqdnDefault": "openam-volker-dev.forgeblocks.com",
390
+ "httpSessionBinding": true,
391
+ "userpassword": null,
392
+ "webSocketConnectionIntervalInMinutes": 30,
393
+ "localAuditLogRotation": false,
394
+ "filterMode": {
395
+ "": "ALL"
396
+ },
397
+ "debugLogfileRotationSize": 52428800,
398
+ "status": "Active",
399
+ "debugLevel": "error",
400
+ "lbCookieName": "amlbcookie",
401
+ "auditLogLocation": "REMOTE",
402
+ "lbCookieEnabled": false,
403
+ "userPrincipalFlag": false,
404
+ "fqdnCheck": false,
405
+ "preAuthCookieMaxAge": 300,
406
+ "localAuditRotationSize": 52428800,
407
+ "fqdnMapping": {},
408
+ "debugLogfileRotationMinutes": -1,
409
+ "loginAttemptLimit": 0,
410
+ "auditAccessType": "LOG_NONE",
411
+ "redirectAttemptLimitCookieName": "amFilterRDParam",
412
+ "debugLogfileRetentionCount": -1,
413
+ "configurationReloadInterval": 0,
414
+ "agentgroup": null,
415
+ "debugLogfileSuffix": "-yyyy.MM.dd-HH.mm.ss",
416
+ "userAttributeName": "employeenumber",
417
+ "localAuditLogfileRetentionCount": -1,
418
+ "customResponseHeader": {},
419
+ "redirectAttemptLimit": 0,
420
+ "userMappingMode": "USER_ID",
421
+ "jwtName": "am-auth-jwt",
422
+ "repositoryLocation": "centralized",
423
+ "loginAttemptLimitCookieName": "amFilterParam",
424
+ "cdssoRootUrl": [
425
+ "agentRootURL=https://openam-volker-dev.forgeblocks.com:443/"
426
+ ],
427
+ "agentConfigChangeNotificationsEnabled": true,
428
+ "debugLogfilePrefix": null,
429
+ "preAuthCookieName": "amFilterCDSSORequest"
430
+ },
431
+ "applicationJ2EEAgentConfig": {
432
+ "profileAttributeFetchMode": "NONE",
433
+ "notEnforcedUris": [
434
+ ""
435
+ ],
436
+ "notEnforcedIpsCacheEnabled": true,
437
+ "logoutIntrospection": false,
438
+ "invertNotEnforcedUris": false,
439
+ "cookieAttributeUrlEncoded": true,
440
+ "cookieAttributeMultiValueSeparator": "|",
441
+ "notEnforcedRuleCompoundSeparator": "|",
442
+ "logoutRequestParameters": {},
443
+ "resourceAccessDeniedUri": {},
444
+ "continuousSecurityCookies": {},
445
+ "responseAttributeFetchMode": "NONE",
446
+ "notEnforcedUrisCacheEnabled": true,
447
+ "headerAttributeDateFormat": "EEE, d MMM yyyy hh:mm:ss z",
448
+ "profileAttributeMap": {},
449
+ "sessionAttributeFetchMode": "NONE",
450
+ "continuousSecurityHeaders": {},
451
+ "responseAttributeMap": {},
452
+ "notEnforcedUrisCacheSize": 1000,
453
+ "invertNotEnforcedIps": false,
454
+ "sessionAttributeMap": {},
455
+ "clientIpValidationRange": {},
456
+ "notEnforcedIpsCacheSize": 1000,
457
+ "clientIpValidationMode": {
458
+ "": "OFF"
459
+ },
460
+ "notEnforcedFavicon": true,
461
+ "logoutEntryUri": {},
462
+ "notEnforcedIps": [
463
+ ""
464
+ ],
465
+ "applicationLogoutUris": {}
466
+ },
467
+ "advancedJ2EEAgentConfig": {
468
+ "postDataStickySessionKeyValue": null,
469
+ "xssDetectionRedirectUri": {},
470
+ "postDataCacheTtlMin": 5,
471
+ "jwtCacheSize": 5000,
472
+ "postDataPreservation": false,
473
+ "policyCacheSize": 5000,
474
+ "postDataPreserveCacheEntryMaxEntries": 1000,
475
+ "postDataPreserveCacheEntryMaxTotalSizeMb": -1,
476
+ "ssoExchangeCacheSize": 100,
477
+ "sessionCacheTTL": 15,
478
+ "idleTimeRefreshWindow": 1,
479
+ "ssoExchangeCacheTTL": 5,
480
+ "possibleXssCodeElements": [
481
+ ""
482
+ ],
483
+ "alternativeAgentPort": null,
484
+ "policyClientPollingInterval": 3,
485
+ "missingPostDataPreservationEntryUri": [
486
+ ""
487
+ ],
488
+ "clientIpHeader": null,
489
+ "alternativeAgentProtocol": null,
490
+ "jwtCacheTTL": 30,
491
+ "customProperties": [],
492
+ "policyCachePerUser": 50,
493
+ "expiredSessionCacheTTL": 20,
494
+ "fragmentRelayUri": null,
495
+ "postDataStickySessionMode": "URL",
496
+ "alternativeAgentHostname": null,
497
+ "expiredSessionCacheSize": 500,
498
+ "clientHostnameHeader": null,
499
+ "monitoringToCSV": false
500
+ },
501
+ "miscJ2EEAgentConfig": {
502
+ "legacyUserAgentList": [
503
+ "Mozilla/4.7*"
504
+ ],
505
+ "loginReasonMap": {},
506
+ "authFailReasonParameterRemapper": {},
507
+ "agent302RedirectStatusCode": 200,
508
+ "loginReasonParameterName": null,
509
+ "gotoUrl": null,
510
+ "localeLanguage": "en",
511
+ "authFailReasonParameterName": null,
512
+ "unwantedHttpUrlParams": [
513
+ ""
514
+ ],
515
+ "agent302RedirectContentType": "application/json",
516
+ "agent302RedirectEnabled": true,
517
+ "legacyUserAgentSupport": false,
518
+ "wantedHttpUrlParams": [
519
+ ""
520
+ ],
521
+ "ignorePathInfo": false,
522
+ "agent302RedirectInvertEnabled": false,
523
+ "wantedHttpUrlRegexParams": [
524
+ ""
525
+ ],
526
+ "localeCountry": "US",
527
+ "agent302RedirectHttpData": "{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}",
528
+ "agent302RedirectNerList": [
529
+ ""
530
+ ],
531
+ "legacyRedirectUri": "/agent/sunwLegacySupportURI",
532
+ "portCheckFile": "PortCheckContent.txt",
533
+ "authFailReasonUrl": null,
534
+ "gotoParameterName": "goto",
535
+ "portCheckSetting": {
536
+ "443": "https"
537
+ },
538
+ "unwantedHttpUrlRegexParams": [
539
+ ""
540
+ ],
541
+ "portCheckEnabled": false
542
+ },
543
+ "_id": "javaAgent",
544
+ "_type": {
545
+ "_id": "J2EEAgent",
546
+ "name": "J2EE Agents",
547
+ "collection": true
548
+ }
549
+ },
550
+ {
551
+ "ssoJ2EEAgentConfig": {
552
+ "encodeCookies": false,
553
+ "cookieResetDomains": {},
554
+ "authExchangeUri": null,
555
+ "authExchangeCookieName": null,
556
+ "setCookieInternalMap": {},
557
+ "excludedUserAgentsList": [],
558
+ "cdssoRedirectUri": "/agentapp/post-authn-redirect",
559
+ "cookieResetPaths": {},
560
+ "cdssoSecureCookies": false,
561
+ "acceptSsoTokenEnabled": false,
562
+ "acceptSsoTokenDomainList": [
563
+ ""
564
+ ],
565
+ "cdssoDomainList": [
566
+ ""
567
+ ],
568
+ "setCookieAttributeMap": {},
569
+ "cookieResetEnabled": false,
570
+ "cookieResetNames": [
571
+ ""
572
+ ],
573
+ "acceptIPDPCookie": false,
574
+ "httpOnly": true
575
+ },
576
+ "amServicesJ2EEAgent": {
577
+ "urlPolicyEnvPostParameters": [
578
+ ""
579
+ ],
580
+ "policyEvaluationRealm": "/alpha",
581
+ "authServiceHost": "openam-volker-dev.forgeblocks.com",
582
+ "policyNotifications": true,
583
+ "conditionalLoginUrl": [
584
+ "|?realm=/alpha"
585
+ ],
586
+ "customLoginEnabled": false,
587
+ "legacyLoginUrlList": [
588
+ ""
589
+ ],
590
+ "agentAdviceEncode": false,
591
+ "authServicePort": 443,
592
+ "urlPolicyEnvGetParameters": [
593
+ ""
594
+ ],
595
+ "restrictToRealm": {},
596
+ "urlPolicyEnvJsessionParameters": [
597
+ ""
598
+ ],
599
+ "amLoginUrl": [],
600
+ "conditionalLogoutUrl": [
601
+ ""
602
+ ],
603
+ "authServiceProtocol": "https",
604
+ "policyEvaluationApplication": "apps",
605
+ "authSuccessRedirectUrl": false,
606
+ "overridePolicyEvaluationRealmEnabled": false
607
+ },
608
+ "globalJ2EEAgentConfig": {
609
+ "userTokenName": "UserToken",
610
+ "fqdnDefault": "apps2.mytestrun.com",
611
+ "recheckAmUnavailabilityInSeconds": 5,
612
+ "httpSessionBinding": true,
613
+ "userpassword": null,
614
+ "webSocketConnectionIntervalInMinutes": 30,
615
+ "localAuditLogRotation": false,
616
+ "filterMode": {
617
+ "": "URL_POLICY"
618
+ },
619
+ "debugLogfileRotationSize": 52428800,
620
+ "status": "Active",
621
+ "debugLevel": "message",
622
+ "lbCookieName": "amlbcookie",
623
+ "auditLogLocation": "ALL",
624
+ "lbCookieEnabled": false,
625
+ "userPrincipalFlag": false,
626
+ "fqdnCheck": false,
627
+ "preAuthCookieMaxAge": 300,
628
+ "localAuditRotationSize": 52428800,
629
+ "fqdnMapping": {},
630
+ "debugLogfileRotationMinutes": -1,
631
+ "loginAttemptLimit": 0,
632
+ "auditAccessType": "LOG_NONE",
633
+ "redirectAttemptLimitCookieName": "amFilterRDParam",
634
+ "debugLogfileRetentionCount": -1,
635
+ "configurationReloadInterval": 10,
636
+ "agentgroup": null,
637
+ "debugLogfileSuffix": "-yyyy.MM.dd-HH.mm.ss",
638
+ "userAttributeName": "uid",
639
+ "localAuditLogfileRetentionCount": -1,
640
+ "customResponseHeader": {},
641
+ "redirectAttemptLimit": 0,
642
+ "userMappingMode": "USER_ID",
643
+ "jwtName": "am-auth-jwt",
644
+ "repositoryLocation": "centralized",
645
+ "loginAttemptLimitCookieName": "amFilterParam",
646
+ "cdssoRootUrl": [
647
+ "agentRootURL=http://localhost:8080/",
648
+ "agentRootURL=https://apps2.mytestrun.com:443/"
649
+ ],
650
+ "agentConfigChangeNotificationsEnabled": false,
651
+ "debugLogfilePrefix": null,
652
+ "preAuthCookieName": "amFilterCDSSORequest"
653
+ },
654
+ "applicationJ2EEAgentConfig": {
655
+ "profileAttributeFetchMode": "NONE",
656
+ "notEnforcedUris": [
657
+ ""
658
+ ],
659
+ "notEnforcedIpsCacheEnabled": true,
660
+ "logoutIntrospection": false,
661
+ "invertNotEnforcedUris": false,
662
+ "cookieAttributeUrlEncoded": true,
663
+ "cookieAttributeMultiValueSeparator": "|",
664
+ "notEnforcedRuleCompoundSeparator": "|",
665
+ "logoutRequestParameters": {},
666
+ "resourceAccessDeniedUri": {},
667
+ "continuousSecurityCookies": {},
668
+ "responseAttributeFetchMode": "NONE",
669
+ "notEnforcedUrisCacheEnabled": true,
670
+ "headerAttributeDateFormat": "EEE, d MMM yyyy hh:mm:ss z",
671
+ "profileAttributeMap": {},
672
+ "sessionAttributeFetchMode": "NONE",
673
+ "continuousSecurityHeaders": {},
674
+ "responseAttributeMap": {},
675
+ "notEnforcedUrisCacheSize": 1000,
676
+ "invertNotEnforcedIps": false,
677
+ "sessionAttributeMap": {},
678
+ "clientIpValidationRange": {},
679
+ "notEnforcedIpsCacheSize": 1000,
680
+ "clientIpValidationMode": {
681
+ "": "OFF"
682
+ },
683
+ "notEnforcedFavicon": true,
684
+ "logoutEntryUri": {},
685
+ "notEnforcedIps": [
686
+ ""
687
+ ],
688
+ "applicationLogoutUris": {}
689
+ },
690
+ "advancedJ2EEAgentConfig": {
691
+ "postDataStickySessionKeyValue": null,
692
+ "xssDetectionRedirectUri": {},
693
+ "postDataCacheTtlMin": 5,
694
+ "jwtCacheSize": 5000,
695
+ "postDataPreservation": false,
696
+ "policyCacheSize": 5000,
697
+ "postDataPreserveCacheEntryMaxEntries": 1000,
698
+ "postDataPreserveCacheEntryMaxTotalSizeMb": -1,
699
+ "ssoExchangeCacheSize": 100,
700
+ "sessionCacheTTL": 15,
701
+ "idleTimeRefreshWindow": 1,
702
+ "ssoExchangeCacheTTL": 5,
703
+ "possibleXssCodeElements": [
704
+ ""
705
+ ],
706
+ "alternativeAgentPort": null,
707
+ "policyClientPollingInterval": 3,
708
+ "missingPostDataPreservationEntryUri": [
709
+ ""
710
+ ],
711
+ "clientIpHeader": null,
712
+ "alternativeAgentProtocol": null,
713
+ "jwtCacheTTL": 30,
714
+ "customProperties": [],
715
+ "policyCachePerUser": 50,
716
+ "expiredSessionCacheTTL": 20,
717
+ "fragmentRelayUri": null,
718
+ "postDataStickySessionMode": "URL",
719
+ "alternativeAgentHostname": null,
720
+ "expiredSessionCacheSize": 500,
721
+ "clientHostnameHeader": null,
722
+ "monitoringToCSV": false
723
+ },
724
+ "miscJ2EEAgentConfig": {
725
+ "legacyUserAgentList": [
726
+ "Mozilla/4.7*"
727
+ ],
728
+ "loginReasonMap": {},
729
+ "authFailReasonParameterRemapper": {},
730
+ "agent302RedirectStatusCode": 200,
731
+ "loginReasonParameterName": null,
732
+ "gotoUrl": null,
733
+ "localeLanguage": "en",
734
+ "authFailReasonParameterName": null,
735
+ "unwantedHttpUrlParams": [
736
+ ""
737
+ ],
738
+ "agent302RedirectContentType": "application/json",
739
+ "agent302RedirectEnabled": true,
740
+ "legacyUserAgentSupport": false,
741
+ "wantedHttpUrlParams": [
742
+ ""
743
+ ],
744
+ "ignorePathInfo": false,
745
+ "agent302RedirectInvertEnabled": false,
746
+ "wantedHttpUrlRegexParams": [
747
+ ""
748
+ ],
749
+ "localeCountry": "US",
750
+ "agent302RedirectHttpData": "{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}",
751
+ "agent302RedirectNerList": [
752
+ ""
753
+ ],
754
+ "legacyRedirectUri": "/app1/sunwLegacySupportURI",
755
+ "portCheckFile": "PortCheckContent.txt",
756
+ "authFailReasonUrl": null,
757
+ "gotoParameterName": "goto",
758
+ "portCheckSetting": {
759
+ "443": "https"
760
+ },
761
+ "unwantedHttpUrlRegexParams": [
762
+ ""
763
+ ],
764
+ "portCheckEnabled": false
765
+ },
766
+ "_id": "tomcatagent",
767
+ "_type": {
768
+ "_id": "J2EEAgent",
769
+ "name": "J2EE Agents",
770
+ "collection": true
771
+ }
772
+ },
773
+ {
774
+ "coreOAuth2ClientConfig": {
775
+ "loopbackInterfaceRedirection": false,
776
+ "defaultScopes": [],
777
+ "userpassword": null,
778
+ "refreshTokenLifetime": 0,
779
+ "scopes": [
780
+ "openid",
781
+ "email",
782
+ "profile"
783
+ ],
784
+ "status": "Active",
785
+ "accessTokenLifetime": 0,
786
+ "redirectionUris": [
787
+ "https://paloalto.catalyst.forgerock.org/login",
788
+ "https://paloalto.catalyst.forgerock.org/am/XUI"
789
+ ],
790
+ "clientName": [],
791
+ "clientType": "Confidential",
792
+ "authorizationCodeLifetime": 0
793
+ },
794
+ "advancedOAuth2ClientConfig": {
795
+ "descriptions": [],
796
+ "requestUris": [],
797
+ "logoUri": [],
798
+ "subjectType": "public",
799
+ "clientUri": [],
800
+ "tokenExchangeAuthLevel": 0,
801
+ "name": [],
802
+ "contacts": [],
803
+ "responseTypes": [
804
+ "code",
805
+ "token",
806
+ "id_token"
807
+ ],
808
+ "updateAccessToken": null,
809
+ "mixUpMitigation": false,
810
+ "customProperties": [],
811
+ "javascriptOrigins": [
812
+ "https://paloalto.catalyst.forgerock.org",
813
+ "https://paloalto.catalyst.forgerock.org:443"
814
+ ],
815
+ "policyUri": [],
816
+ "softwareVersion": null,
817
+ "sectorIdentifierUri": null,
818
+ "tosURI": [],
819
+ "tokenEndpointAuthMethod": "client_secret_basic",
820
+ "isConsentImplied": true,
821
+ "softwareIdentity": null,
822
+ "grantTypes": [
823
+ "authorization_code",
824
+ "client_credentials",
825
+ "refresh_token",
826
+ "password",
827
+ "urn:ietf:params:oauth:grant-type:uma-ticket",
828
+ "implicit",
829
+ "urn:ietf:params:oauth:grant-type:device_code",
830
+ "urn:ietf:params:oauth:grant-type:saml2-bearer",
831
+ "urn:openid:params:grant-type:ciba",
832
+ "urn:ietf:params:oauth:grant-type:token-exchange",
833
+ "urn:ietf:params:oauth:grant-type:jwt-bearer"
834
+ ]
835
+ },
836
+ "signEncOAuth2ClientConfig": {
837
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
838
+ "idTokenEncryptionEnabled": false,
839
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
840
+ "requestParameterSignedAlg": null,
841
+ "clientJwtPublicKey": null,
842
+ "idTokenPublicEncryptionKey": null,
843
+ "mTLSSubjectDN": null,
844
+ "mTLSCertificateBoundAccessTokens": false,
845
+ "userinfoResponseFormat": "JSON",
846
+ "publicKeyLocation": "jwks_uri",
847
+ "tokenIntrospectionResponseFormat": "JSON",
848
+ "jwkStoreCacheMissCacheTime": 60000,
849
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
850
+ "userinfoSignedResponseAlg": null,
851
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
852
+ "requestParameterEncryptedAlg": null,
853
+ "mTLSTrustedCert": null,
854
+ "jwkSet": null,
855
+ "idTokenEncryptionMethod": "A128CBC-HS256",
856
+ "jwksCacheTimeout": 3600000,
857
+ "userinfoEncryptedResponseAlg": null,
858
+ "idTokenSignedResponseAlg": "RS256",
859
+ "jwksUri": null,
860
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
861
+ "tokenIntrospectionSignedResponseAlg": "RS256",
862
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
863
+ },
864
+ "coreOpenIDClientConfig": {
865
+ "claims": [],
866
+ "clientSessionUri": null,
867
+ "backchannel_logout_uri": null,
868
+ "defaultAcrValues": [],
869
+ "jwtTokenLifetime": 0,
870
+ "defaultMaxAgeEnabled": false,
871
+ "defaultMaxAge": 600,
872
+ "postLogoutRedirectUri": [],
873
+ "backchannel_logout_session_required": false
874
+ },
875
+ "coreUmaClientConfig": {
876
+ "claimsRedirectionUris": []
877
+ },
878
+ "_id": "poc",
879
+ "_type": {
880
+ "_id": "OAuth2Client",
881
+ "name": "OAuth2 Clients",
882
+ "collection": true
883
+ }
884
+ },
885
+ {
886
+ "coreOAuth2ClientConfig": {
887
+ "loopbackInterfaceRedirection": false,
888
+ "defaultScopes": [],
889
+ "agentgroup": null,
890
+ "refreshTokenLifetime": 0,
891
+ "scopes": [
892
+ "fr:idm:*",
893
+ "openid"
894
+ ],
895
+ "status": "Active",
896
+ "accessTokenLifetime": 0,
897
+ "redirectionUris": [
898
+ "https://openam-volker-dev.forgeblocks.com/admin/appAuthHelperRedirect.html",
899
+ "https://openam-volker-dev.forgeblocks.com/admin/sessionCheck.html",
900
+ "https://openam-volker-dev.forgeblocks.com/platform/appAuthHelperRedirect.html",
901
+ "https://openam-volker-dev.forgeblocks.com/platform/sessionCheck.html",
902
+ "https://idc.mytestrun.com/admin/appAuthHelperRedirect.html",
903
+ "https://idc.mytestrun.com/admin/sessionCheck.html",
904
+ "https://idc.mytestrun.com/platform/appAuthHelperRedirect.html",
905
+ "https://idc.mytestrun.com/platform/sessionCheck.html",
906
+ "https://idc.scheuber.io/admin/appAuthHelperRedirect.html",
907
+ "https://idc.scheuber.io/admin/sessionCheck.html",
908
+ "https://idc.scheuber.io/platform/appAuthHelperRedirect.html",
909
+ "https://idc.scheuber.io/platform/sessionCheck.html"
910
+ ],
911
+ "clientName": [],
912
+ "clientType": "Public",
913
+ "authorizationCodeLifetime": 0
914
+ },
915
+ "advancedOAuth2ClientConfig": {
916
+ "descriptions": [],
917
+ "requestUris": [],
918
+ "logoUri": [],
919
+ "subjectType": "public",
920
+ "clientUri": [],
921
+ "name": [],
922
+ "contacts": [],
923
+ "responseTypes": [
924
+ "code",
925
+ "token",
926
+ "id_token",
927
+ "code token",
928
+ "token id_token",
929
+ "code id_token",
930
+ "code token id_token",
931
+ "device_code",
932
+ "device_code id_token"
933
+ ],
934
+ "updateAccessToken": null,
935
+ "mixUpMitigation": false,
936
+ "javascriptOrigins": [],
937
+ "policyUri": [],
938
+ "sectorIdentifierUri": null,
939
+ "tokenEndpointAuthMethod": "none",
940
+ "isConsentImplied": true,
941
+ "grantTypes": [
942
+ "authorization_code",
943
+ "implicit"
944
+ ]
945
+ },
946
+ "signEncOAuth2ClientConfig": {
947
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
948
+ "idTokenEncryptionEnabled": false,
949
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
950
+ "requestParameterSignedAlg": null,
951
+ "clientJwtPublicKey": null,
952
+ "idTokenPublicEncryptionKey": null,
953
+ "mTLSSubjectDN": null,
954
+ "mTLSCertificateBoundAccessTokens": false,
955
+ "userinfoResponseFormat": "JSON",
956
+ "publicKeyLocation": "jwks_uri",
957
+ "tokenIntrospectionResponseFormat": "JSON",
958
+ "jwkStoreCacheMissCacheTime": 60000,
959
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
960
+ "userinfoSignedResponseAlg": null,
961
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
962
+ "requestParameterEncryptedAlg": null,
963
+ "mTLSTrustedCert": null,
964
+ "jwkSet": null,
965
+ "idTokenEncryptionMethod": "A128CBC-HS256",
966
+ "jwksCacheTimeout": 3600000,
967
+ "userinfoEncryptedResponseAlg": null,
968
+ "idTokenSignedResponseAlg": "RS256",
969
+ "jwksUri": "http://am:80/am/oauth2/connect/jwk_uri",
970
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
971
+ "tokenIntrospectionSignedResponseAlg": "RS256",
972
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
973
+ },
974
+ "coreOpenIDClientConfig": {
975
+ "claims": [],
976
+ "clientSessionUri": null,
977
+ "defaultAcrValues": [],
978
+ "jwtTokenLifetime": 0,
979
+ "defaultMaxAgeEnabled": false,
980
+ "defaultMaxAge": 600,
981
+ "postLogoutRedirectUri": []
982
+ },
983
+ "coreUmaClientConfig": {
984
+ "claimsRedirectionUris": []
985
+ },
986
+ "_id": "idmAdminClient",
987
+ "_type": {
988
+ "_id": "OAuth2Client",
989
+ "name": "OAuth2 Clients",
990
+ "collection": true
991
+ }
992
+ },
993
+ {
994
+ "coreOAuth2ClientConfig": {
995
+ "loopbackInterfaceRedirection": false,
996
+ "defaultScopes": [],
997
+ "userpassword": null,
998
+ "refreshTokenLifetime": 0,
999
+ "scopes": [
1000
+ "openid",
1001
+ "fr:idm:*"
1002
+ ],
1003
+ "status": "Active",
1004
+ "accessTokenLifetime": 0,
1005
+ "redirectionUris": [],
1006
+ "clientName": [],
1007
+ "clientType": "Confidential",
1008
+ "authorizationCodeLifetime": 0
1009
+ },
1010
+ "advancedOAuth2ClientConfig": {
1011
+ "descriptions": [],
1012
+ "requestUris": [],
1013
+ "logoUri": [],
1014
+ "subjectType": "public",
1015
+ "clientUri": [],
1016
+ "tokenExchangeAuthLevel": 0,
1017
+ "name": [],
1018
+ "contacts": [],
1019
+ "responseTypes": [
1020
+ "code",
1021
+ "token",
1022
+ "id_token"
1023
+ ],
1024
+ "updateAccessToken": null,
1025
+ "mixUpMitigation": false,
1026
+ "customProperties": [],
1027
+ "javascriptOrigins": [],
1028
+ "policyUri": [],
1029
+ "softwareVersion": null,
1030
+ "sectorIdentifierUri": null,
1031
+ "tosURI": [],
1032
+ "tokenEndpointAuthMethod": "client_secret_basic",
1033
+ "isConsentImplied": false,
1034
+ "softwareIdentity": null,
1035
+ "grantTypes": [
1036
+ "authorization_code",
1037
+ "client_credentials",
1038
+ "refresh_token"
1039
+ ]
1040
+ },
1041
+ "signEncOAuth2ClientConfig": {
1042
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
1043
+ "idTokenEncryptionEnabled": false,
1044
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1045
+ "requestParameterSignedAlg": null,
1046
+ "clientJwtPublicKey": null,
1047
+ "idTokenPublicEncryptionKey": null,
1048
+ "mTLSSubjectDN": null,
1049
+ "mTLSCertificateBoundAccessTokens": false,
1050
+ "userinfoResponseFormat": "JSON",
1051
+ "publicKeyLocation": "jwks_uri",
1052
+ "tokenIntrospectionResponseFormat": "JSON",
1053
+ "jwkStoreCacheMissCacheTime": 60000,
1054
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
1055
+ "userinfoSignedResponseAlg": null,
1056
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
1057
+ "requestParameterEncryptedAlg": null,
1058
+ "mTLSTrustedCert": null,
1059
+ "jwkSet": null,
1060
+ "idTokenEncryptionMethod": "A128CBC-HS256",
1061
+ "jwksCacheTimeout": 3600000,
1062
+ "userinfoEncryptedResponseAlg": null,
1063
+ "idTokenSignedResponseAlg": "RS256",
1064
+ "jwksUri": null,
1065
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1066
+ "tokenIntrospectionSignedResponseAlg": "RS256",
1067
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
1068
+ },
1069
+ "coreOpenIDClientConfig": {
1070
+ "claims": [],
1071
+ "clientSessionUri": null,
1072
+ "backchannel_logout_uri": null,
1073
+ "defaultAcrValues": [],
1074
+ "jwtTokenLifetime": 0,
1075
+ "defaultMaxAgeEnabled": false,
1076
+ "defaultMaxAge": 600,
1077
+ "postLogoutRedirectUri": [],
1078
+ "backchannel_logout_session_required": false
1079
+ },
1080
+ "coreUmaClientConfig": {
1081
+ "claimsRedirectionUris": []
1082
+ },
1083
+ "_id": "0bf0d4fc-6273-4e8e-a2ce-899df2ee96d4",
1084
+ "_type": {
1085
+ "_id": "OAuth2Client",
1086
+ "name": "OAuth2 Clients",
1087
+ "collection": true
1088
+ }
1089
+ },
1090
+ {
1091
+ "coreOAuth2ClientConfig": {
1092
+ "loopbackInterfaceRedirection": false,
1093
+ "defaultScopes": [],
1094
+ "agentgroup": null,
1095
+ "userpassword": null,
1096
+ "refreshTokenLifetime": 0,
1097
+ "scopes": [
1098
+ "fr:idm:*",
1099
+ "openid"
1100
+ ],
1101
+ "status": "Active",
1102
+ "accessTokenLifetime": 0,
1103
+ "redirectionUris": [],
1104
+ "clientName": [],
1105
+ "clientType": "Confidential",
1106
+ "authorizationCodeLifetime": 0
1107
+ },
1108
+ "advancedOAuth2ClientConfig": {
1109
+ "descriptions": [],
1110
+ "requestUris": [],
1111
+ "logoUri": [],
1112
+ "subjectType": "Public",
1113
+ "clientUri": [],
1114
+ "tokenExchangeAuthLevel": 0,
1115
+ "name": [],
1116
+ "contacts": [],
1117
+ "responseTypes": [
1118
+ "code",
1119
+ "token",
1120
+ "id_token",
1121
+ "code token",
1122
+ "token id_token",
1123
+ "code id_token",
1124
+ "code token id_token",
1125
+ "device_code",
1126
+ "device_code id_token"
1127
+ ],
1128
+ "updateAccessToken": null,
1129
+ "mixUpMitigation": false,
1130
+ "customProperties": [],
1131
+ "javascriptOrigins": [],
1132
+ "policyUri": [],
1133
+ "sectorIdentifierUri": null,
1134
+ "tokenEndpointAuthMethod": "client_secret_basic",
1135
+ "isConsentImplied": false,
1136
+ "grantTypes": [
1137
+ "client_credentials",
1138
+ "idm_delegation"
1139
+ ]
1140
+ },
1141
+ "signEncOAuth2ClientConfig": {
1142
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
1143
+ "idTokenEncryptionEnabled": false,
1144
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1145
+ "requestParameterSignedAlg": null,
1146
+ "clientJwtPublicKey": null,
1147
+ "idTokenPublicEncryptionKey": null,
1148
+ "mTLSSubjectDN": null,
1149
+ "mTLSCertificateBoundAccessTokens": false,
1150
+ "userinfoResponseFormat": "JSON",
1151
+ "publicKeyLocation": "jwks_uri",
1152
+ "tokenIntrospectionResponseFormat": "JSON",
1153
+ "jwkStoreCacheMissCacheTime": 60000,
1154
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
1155
+ "userinfoSignedResponseAlg": null,
1156
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
1157
+ "requestParameterEncryptedAlg": null,
1158
+ "mTLSTrustedCert": null,
1159
+ "jwkSet": null,
1160
+ "idTokenEncryptionMethod": "A128CBC-HS256",
1161
+ "jwksCacheTimeout": 3600000,
1162
+ "userinfoEncryptedResponseAlg": null,
1163
+ "idTokenSignedResponseAlg": "RS256",
1164
+ "jwksUri": "http://am:80/am/oauth2/connect/jwk_uri",
1165
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1166
+ "tokenIntrospectionSignedResponseAlg": "RS256",
1167
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
1168
+ },
1169
+ "coreOpenIDClientConfig": {
1170
+ "claims": [],
1171
+ "clientSessionUri": null,
1172
+ "defaultAcrValues": [],
1173
+ "jwtTokenLifetime": 0,
1174
+ "defaultMaxAgeEnabled": false,
1175
+ "defaultMaxAge": 600,
1176
+ "postLogoutRedirectUri": []
1177
+ },
1178
+ "coreUmaClientConfig": {
1179
+ "claimsRedirectionUris": []
1180
+ },
1181
+ "_id": "idm-provisioning",
1182
+ "_type": {
1183
+ "_id": "OAuth2Client",
1184
+ "name": "OAuth2 Clients",
1185
+ "collection": true
1186
+ }
1187
+ },
1188
+ {
1189
+ "coreOAuth2ClientConfig": {
1190
+ "loopbackInterfaceRedirection": false,
1191
+ "defaultScopes": [],
1192
+ "userpassword": null,
1193
+ "refreshTokenLifetime": 0,
1194
+ "scopes": [
1195
+ "openid",
1196
+ "profile",
1197
+ "email"
1198
+ ],
1199
+ "status": "Inactive",
1200
+ "accessTokenLifetime": 0,
1201
+ "redirectionUris": [],
1202
+ "clientName": [],
1203
+ "clientType": "Confidential",
1204
+ "authorizationCodeLifetime": 0
1205
+ },
1206
+ "advancedOAuth2ClientConfig": {
1207
+ "descriptions": [],
1208
+ "requestUris": [],
1209
+ "logoUri": [],
1210
+ "subjectType": "public",
1211
+ "clientUri": [],
1212
+ "tokenExchangeAuthLevel": 0,
1213
+ "name": [],
1214
+ "contacts": [],
1215
+ "responseTypes": [
1216
+ "code",
1217
+ "token",
1218
+ "id_token"
1219
+ ],
1220
+ "updateAccessToken": null,
1221
+ "mixUpMitigation": false,
1222
+ "customProperties": [],
1223
+ "javascriptOrigins": [],
1224
+ "policyUri": [],
1225
+ "softwareVersion": null,
1226
+ "sectorIdentifierUri": null,
1227
+ "tosURI": [],
1228
+ "tokenEndpointAuthMethod": "client_secret_basic",
1229
+ "isConsentImplied": false,
1230
+ "softwareIdentity": null,
1231
+ "grantTypes": [
1232
+ "authorization_code",
1233
+ "client_credentials",
1234
+ "refresh_token",
1235
+ "urn:ietf:params:oauth:grant-type:token-exchange",
1236
+ "password"
1237
+ ]
1238
+ },
1239
+ "signEncOAuth2ClientConfig": {
1240
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
1241
+ "idTokenEncryptionEnabled": false,
1242
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1243
+ "requestParameterSignedAlg": null,
1244
+ "clientJwtPublicKey": null,
1245
+ "idTokenPublicEncryptionKey": null,
1246
+ "mTLSSubjectDN": null,
1247
+ "mTLSCertificateBoundAccessTokens": false,
1248
+ "userinfoResponseFormat": "JSON",
1249
+ "publicKeyLocation": "jwks_uri",
1250
+ "tokenIntrospectionResponseFormat": "JSON",
1251
+ "jwkStoreCacheMissCacheTime": 60000,
1252
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
1253
+ "userinfoSignedResponseAlg": null,
1254
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
1255
+ "requestParameterEncryptedAlg": null,
1256
+ "mTLSTrustedCert": null,
1257
+ "jwkSet": null,
1258
+ "idTokenEncryptionMethod": "A128CBC-HS256",
1259
+ "jwksCacheTimeout": 3600000,
1260
+ "userinfoEncryptedResponseAlg": null,
1261
+ "idTokenSignedResponseAlg": "RS256",
1262
+ "jwksUri": null,
1263
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1264
+ "tokenIntrospectionSignedResponseAlg": "RS256",
1265
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
1266
+ },
1267
+ "coreOpenIDClientConfig": {
1268
+ "claims": [],
1269
+ "clientSessionUri": null,
1270
+ "backchannel_logout_uri": null,
1271
+ "defaultAcrValues": [],
1272
+ "jwtTokenLifetime": 0,
1273
+ "defaultMaxAgeEnabled": false,
1274
+ "defaultMaxAge": 600,
1275
+ "postLogoutRedirectUri": [],
1276
+ "backchannel_logout_session_required": false
1277
+ },
1278
+ "coreUmaClientConfig": {
1279
+ "claimsRedirectionUris": []
1280
+ },
1281
+ "_id": "postman2",
1282
+ "_type": {
1283
+ "_id": "OAuth2Client",
1284
+ "name": "OAuth2 Clients",
1285
+ "collection": true
1286
+ }
1287
+ },
1288
+ {
1289
+ "signEncOAuth2ClientConfig": {
1290
+ "userinfoResponseFormat": "JSON",
1291
+ "mTLSCertificateBoundAccessTokens": false,
1292
+ "publicKeyLocation": "x509",
1293
+ "tokenIntrospectionResponseFormat": "JSON",
1294
+ "userinfoSignedResponseAlg": null,
1295
+ "idTokenEncryptionEnabled": false,
1296
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
1297
+ "requestParameterEncryptedAlg": null,
1298
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1299
+ "requestParameterSignedAlg": null,
1300
+ "idTokenEncryptionMethod": "A128CBC-HS256",
1301
+ "userinfoEncryptedResponseAlg": null,
1302
+ "idTokenSignedResponseAlg": "RS256",
1303
+ "tokenIntrospectionSignedResponseAlg": "RS256",
1304
+ "userinfoEncryptedResponseEncryptionAlgorithm": null,
1305
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
1306
+ },
1307
+ "coreOpenIDClientConfig": {
1308
+ "jwtTokenLifetime": 0,
1309
+ "defaultMaxAgeEnabled": false,
1310
+ "defaultMaxAge": 1,
1311
+ "defaultAcrValues": [],
1312
+ "backchannel_logout_session_required": false
1313
+ },
1314
+ "coreOAuth2ClientConfig": {
1315
+ "scopes": [
1316
+ "openid",
1317
+ "profile"
1318
+ ],
1319
+ "status": "Active",
1320
+ "accessTokenLifetime": 0,
1321
+ "redirectionUris": [
1322
+ "https://openam-volker-dev.forgeblocks.com"
1323
+ ],
1324
+ "clientName": [
1325
+ "ja-jpan-jp|クライアント名",
1326
+ "en|Vlad1"
1327
+ ],
1328
+ "clientType": "Confidential",
1329
+ "defaultScopes": [],
1330
+ "userpassword": null,
1331
+ "authorizationCodeLifetime": 0,
1332
+ "refreshTokenLifetime": 0
1333
+ },
1334
+ "advancedOAuth2ClientConfig": {
1335
+ "subjectType": "public",
1336
+ "tokenEndpointAuthMethod": "client_secret_basic",
1337
+ "responseTypes": [
1338
+ "code",
1339
+ "id_token code"
1340
+ ],
1341
+ "updateAccessToken": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxNWUzYzdmNy00YzliLTQ5YjQtOWQ3OC1mYzJhYTc0ZWYzMzgiLCJjdHMiOiJPQVVUSDJfR1JBTlRfU0VUIiwiYXVkaXRUcmFja2luZ0lkIjoiYjU4ZmZlZDQtZTkxNy00MjJkLTg2NjktNzNkNTIwMjVjYTMyLTE1NjQ4MyIsInN1Ym5hbWUiOiIxNWUzYzdmNy00YzliLTQ5YjQtOWQ3OC1mYzJhYTc0ZWYzMzgiLCJpc3MiOiJodHRwczovL29wZW5hbS12b2xrZXItZGV2LmZvcmdlYmxvY2tzLmNvbTo0NDMvYW0vb2F1dGgyL2FscGhhIiwidG9rZW5OYW1lIjoiYWNjZXNzX3Rva2VuIiwidG9rZW5fdHlwZSI6IkJlYXJlciIsImF1dGhHcmFudElkIjoiUl9Yckp1cDRub0xlZnlyQ2taT0M3VnhBYmwwLmFlUU1VaV9hZHp0Qk5WRGlzcjJVdGpIVmpodyIsImF1ZCI6IjE1ZTNjN2Y3LTRjOWItNDliNC05ZDc4LWZjMmFhNzRlZjMzOCIsIm5iZiI6MTY0NjcxMDkxMywiZ3JhbnRfdHlwZSI6ImR5bmFtaWNfY2xpZW50X3JlZ2lzdHJhdGlvbiIsInNjb3BlIjpbXSwiYXV0aF90aW1lIjoxNjQ2NzEwOTEzLCJyZWFsbSI6Ii9hbHBoYSIsImV4cCI6MTY0NjcxNDUxMywiaWF0IjoxNjQ2NzEwOTEzLCJleHBpcmVzX2luIjozNjAwLCJqdGkiOiJSX1hySnVwNG5vTGVmeXJDa1pPQzdWeEFibDAuWWNudlRWZl9MVE94WDhLam9USFFuc2RzODZVIiwibWF5X2FjdCI6eyJjbGllbnRfaWQiOltudWxsXX19.JrZnqFW4cBoGnKu8d7Jzz6_iZX9JiMyo1jy2xGmwLH4",
1342
+ "grantTypes": [
1343
+ "authorization_code"
1344
+ ]
1345
+ },
1346
+ "_id": "15e3c7f7-4c9b-49b4-9d78-fc2aa74ef338",
1347
+ "_type": {
1348
+ "_id": "OAuth2Client",
1349
+ "name": "OAuth2 Clients",
1350
+ "collection": true
1351
+ }
1352
+ },
1353
+ {
1354
+ "coreOAuth2ClientConfig": {
1355
+ "loopbackInterfaceRedirection": false,
1356
+ "defaultScopes": [],
1357
+ "userpassword": null,
1358
+ "refreshTokenLifetime": 0,
1359
+ "scopes": [
1360
+ "openid",
1361
+ "fr:idm:*",
1362
+ "profile",
1363
+ "email",
1364
+ "givenName",
1365
+ "sn",
1366
+ "uid",
1367
+ "am-introspect-all-tokens",
1368
+ "sg-bcbs",
1369
+ "fr:idc:esv:*"
1370
+ ],
1371
+ "status": "Active",
1372
+ "accessTokenLifetime": 0,
1373
+ "redirectionUris": [
1374
+ "https://openam-volker-dev.forgeblocks.com",
1375
+ "https://idc.scheuber.io/enduser?realm=/alpha"
1376
+ ],
1377
+ "clientName": [
1378
+ "postman"
1379
+ ],
1380
+ "clientType": "Confidential",
1381
+ "authorizationCodeLifetime": 0
1382
+ },
1383
+ "advancedOAuth2ClientConfig": {
1384
+ "descriptions": [
1385
+ "Postman Client"
1386
+ ],
1387
+ "requestUris": [],
1388
+ "logoUri": [],
1389
+ "subjectType": "public",
1390
+ "clientUri": [],
1391
+ "tokenExchangeAuthLevel": 0,
1392
+ "name": [],
1393
+ "contacts": [],
1394
+ "responseTypes": [
1395
+ "code",
1396
+ "token",
1397
+ "id_token"
1398
+ ],
1399
+ "updateAccessToken": null,
1400
+ "mixUpMitigation": false,
1401
+ "customProperties": [],
1402
+ "javascriptOrigins": [
1403
+ "https://idc.scheuber.io",
1404
+ "https://idc.scheuber.io:443",
1405
+ "https://openam-volker-dev.forgeblocks.com",
1406
+ "https://openam-volker-dev.forgeblocks.com:443"
1407
+ ],
1408
+ "policyUri": [],
1409
+ "softwareVersion": null,
1410
+ "sectorIdentifierUri": null,
1411
+ "tosURI": [],
1412
+ "tokenEndpointAuthMethod": "client_secret_basic",
1413
+ "isConsentImplied": true,
1414
+ "softwareIdentity": null,
1415
+ "grantTypes": [
1416
+ "authorization_code",
1417
+ "client_credentials",
1418
+ "password",
1419
+ "urn:ietf:params:oauth:grant-type:token-exchange",
1420
+ "implicit",
1421
+ "refresh_token"
1422
+ ]
1423
+ },
1424
+ "signEncOAuth2ClientConfig": {
1425
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
1426
+ "idTokenEncryptionEnabled": false,
1427
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1428
+ "requestParameterSignedAlg": null,
1429
+ "clientJwtPublicKey": null,
1430
+ "idTokenPublicEncryptionKey": null,
1431
+ "mTLSSubjectDN": null,
1432
+ "mTLSCertificateBoundAccessTokens": false,
1433
+ "userinfoResponseFormat": "JSON",
1434
+ "publicKeyLocation": "jwks_uri",
1435
+ "tokenIntrospectionResponseFormat": "JSON",
1436
+ "jwkStoreCacheMissCacheTime": 60000,
1437
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
1438
+ "userinfoSignedResponseAlg": null,
1439
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
1440
+ "requestParameterEncryptedAlg": null,
1441
+ "mTLSTrustedCert": null,
1442
+ "jwkSet": null,
1443
+ "idTokenEncryptionMethod": "A128CBC-HS256",
1444
+ "jwksCacheTimeout": 3600000,
1445
+ "userinfoEncryptedResponseAlg": null,
1446
+ "idTokenSignedResponseAlg": "RS256",
1447
+ "jwksUri": null,
1448
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1449
+ "tokenIntrospectionSignedResponseAlg": "RS256",
1450
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
1451
+ },
1452
+ "coreOpenIDClientConfig": {
1453
+ "claims": [],
1454
+ "clientSessionUri": null,
1455
+ "defaultAcrValues": [],
1456
+ "jwtTokenLifetime": 0,
1457
+ "defaultMaxAgeEnabled": false,
1458
+ "defaultMaxAge": 600,
1459
+ "postLogoutRedirectUri": []
1460
+ },
1461
+ "coreUmaClientConfig": {
1462
+ "claimsRedirectionUris": []
1463
+ },
1464
+ "_id": "postman",
1465
+ "_type": {
1466
+ "_id": "OAuth2Client",
1467
+ "name": "OAuth2 Clients",
1468
+ "collection": true
1469
+ }
1470
+ },
1471
+ {
1472
+ "coreOAuth2ClientConfig": {
1473
+ "loopbackInterfaceRedirection": false,
1474
+ "defaultScopes": [
1475
+ "profile",
1476
+ "openid",
1477
+ "email"
1478
+ ],
1479
+ "refreshTokenLifetime": 604800,
1480
+ "scopes": [
1481
+ "openid",
1482
+ "profile",
1483
+ "email"
1484
+ ],
1485
+ "status": "Active",
1486
+ "accessTokenLifetime": 3600,
1487
+ "redirectionUris": [
1488
+ "http://localhost:3000/callback",
1489
+ "https://openam-volker-dev.forgeblocks.com"
1490
+ ],
1491
+ "clientName": [],
1492
+ "clientType": "Public",
1493
+ "authorizationCodeLifetime": 120
1494
+ },
1495
+ "advancedOAuth2ClientConfig": {
1496
+ "require_pushed_authorization_requests": false,
1497
+ "descriptions": [],
1498
+ "requestUris": [],
1499
+ "logoUri": [],
1500
+ "subjectType": "pairwise",
1501
+ "clientUri": [],
1502
+ "tokenExchangeAuthLevel": 0,
1503
+ "name": [],
1504
+ "contacts": [],
1505
+ "responseTypes": [
1506
+ "code",
1507
+ "token",
1508
+ "id_token"
1509
+ ],
1510
+ "updateAccessToken": null,
1511
+ "mixUpMitigation": false,
1512
+ "customProperties": [],
1513
+ "javascriptOrigins": [
1514
+ "http://localhost:3000",
1515
+ "https://openam-volker-dev.forgeblocks.com",
1516
+ "https://openam-volker-dev.forgeblocks.com:443"
1517
+ ],
1518
+ "policyUri": [],
1519
+ "softwareVersion": null,
1520
+ "sectorIdentifierUri": null,
1521
+ "tosURI": [],
1522
+ "tokenEndpointAuthMethod": "none",
1523
+ "isConsentImplied": true,
1524
+ "softwareIdentity": null,
1525
+ "grantTypes": [
1526
+ "authorization_code"
1527
+ ]
1528
+ },
1529
+ "overrideOAuth2ClientConfig": {
1530
+ "issueRefreshToken": true,
1531
+ "remoteConsentServiceId": null,
1532
+ "tokenEncryptionEnabled": false,
1533
+ "enableRemoteConsent": false,
1534
+ "oidcMayActScript": "[Empty]",
1535
+ "usePolicyEngineForScope": false,
1536
+ "oidcClaimsScript": "36863ffb-40ec-48b9-94b1-9a99f71cc3b5",
1537
+ "overrideableOIDCClaims": [],
1538
+ "accessTokenMayActScript": "[Empty]",
1539
+ "clientsCanSkipConsent": false,
1540
+ "accessTokenModificationScript": "d22f9a0c-426a-4466-b95e-d0f125b0d5fa",
1541
+ "providerOverridesEnabled": false,
1542
+ "issueRefreshTokenOnRefreshedToken": true,
1543
+ "statelessTokensEnabled": false
1544
+ },
1545
+ "signEncOAuth2ClientConfig": {
1546
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
1547
+ "idTokenEncryptionEnabled": false,
1548
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1549
+ "requestParameterSignedAlg": null,
1550
+ "clientJwtPublicKey": null,
1551
+ "idTokenPublicEncryptionKey": null,
1552
+ "mTLSSubjectDN": null,
1553
+ "mTLSCertificateBoundAccessTokens": false,
1554
+ "userinfoResponseFormat": "JSON",
1555
+ "publicKeyLocation": "jwks_uri",
1556
+ "tokenIntrospectionResponseFormat": "JSON",
1557
+ "jwkStoreCacheMissCacheTime": 60000,
1558
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
1559
+ "userinfoSignedResponseAlg": null,
1560
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
1561
+ "requestParameterEncryptedAlg": null,
1562
+ "mTLSTrustedCert": null,
1563
+ "jwkSet": null,
1564
+ "idTokenEncryptionMethod": "A128CBC-HS256",
1565
+ "jwksCacheTimeout": 3600000,
1566
+ "userinfoEncryptedResponseAlg": null,
1567
+ "idTokenSignedResponseAlg": "RS256",
1568
+ "jwksUri": null,
1569
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1570
+ "tokenIntrospectionSignedResponseAlg": "RS256",
1571
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
1572
+ },
1573
+ "coreOpenIDClientConfig": {
1574
+ "claims": [],
1575
+ "clientSessionUri": null,
1576
+ "backchannel_logout_uri": null,
1577
+ "defaultAcrValues": [],
1578
+ "jwtTokenLifetime": 3600,
1579
+ "defaultMaxAgeEnabled": false,
1580
+ "defaultMaxAge": 600,
1581
+ "postLogoutRedirectUri": [],
1582
+ "backchannel_logout_session_required": false
1583
+ },
1584
+ "coreUmaClientConfig": {
1585
+ "claimsRedirectionUris": []
1586
+ },
1587
+ "_id": "WebOAuthClient",
1588
+ "_type": {
1589
+ "_id": "OAuth2Client",
1590
+ "name": "OAuth2 Clients",
1591
+ "collection": true
1592
+ }
1593
+ },
1594
+ {
1595
+ "coreOAuth2ClientConfig": {
1596
+ "loopbackInterfaceRedirection": false,
1597
+ "defaultScopes": [],
1598
+ "userpassword": null,
1599
+ "refreshTokenLifetime": 0,
1600
+ "scopes": [
1601
+ "openid",
1602
+ "fr:idm:*"
1603
+ ],
1604
+ "status": "Active",
1605
+ "accessTokenLifetime": 0,
1606
+ "redirectionUris": [],
1607
+ "clientName": [],
1608
+ "clientType": "Confidential",
1609
+ "authorizationCodeLifetime": 0
1610
+ },
1611
+ "advancedOAuth2ClientConfig": {
1612
+ "descriptions": [],
1613
+ "requestUris": [],
1614
+ "logoUri": [],
1615
+ "subjectType": "public",
1616
+ "clientUri": [],
1617
+ "tokenExchangeAuthLevel": 0,
1618
+ "name": [],
1619
+ "contacts": [],
1620
+ "responseTypes": [
1621
+ "code",
1622
+ "token",
1623
+ "id_token"
1624
+ ],
1625
+ "updateAccessToken": null,
1626
+ "mixUpMitigation": false,
1627
+ "customProperties": [],
1628
+ "javascriptOrigins": [],
1629
+ "policyUri": [],
1630
+ "softwareVersion": null,
1631
+ "sectorIdentifierUri": null,
1632
+ "tosURI": [],
1633
+ "tokenEndpointAuthMethod": "client_secret_basic",
1634
+ "isConsentImplied": false,
1635
+ "softwareIdentity": null,
1636
+ "grantTypes": [
1637
+ "authorization_code",
1638
+ "client_credentials",
1639
+ "refresh_token"
1640
+ ]
1641
+ },
1642
+ "signEncOAuth2ClientConfig": {
1643
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
1644
+ "idTokenEncryptionEnabled": false,
1645
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1646
+ "requestParameterSignedAlg": null,
1647
+ "clientJwtPublicKey": null,
1648
+ "idTokenPublicEncryptionKey": null,
1649
+ "mTLSSubjectDN": null,
1650
+ "mTLSCertificateBoundAccessTokens": false,
1651
+ "userinfoResponseFormat": "JSON",
1652
+ "publicKeyLocation": "jwks_uri",
1653
+ "tokenIntrospectionResponseFormat": "JSON",
1654
+ "jwkStoreCacheMissCacheTime": 60000,
1655
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
1656
+ "userinfoSignedResponseAlg": null,
1657
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
1658
+ "requestParameterEncryptedAlg": null,
1659
+ "mTLSTrustedCert": null,
1660
+ "jwkSet": null,
1661
+ "idTokenEncryptionMethod": "A128CBC-HS256",
1662
+ "jwksCacheTimeout": 3600000,
1663
+ "userinfoEncryptedResponseAlg": null,
1664
+ "idTokenSignedResponseAlg": "RS256",
1665
+ "jwksUri": null,
1666
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1667
+ "tokenIntrospectionSignedResponseAlg": "RS256",
1668
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
1669
+ },
1670
+ "coreOpenIDClientConfig": {
1671
+ "claims": [],
1672
+ "clientSessionUri": null,
1673
+ "backchannel_logout_uri": null,
1674
+ "defaultAcrValues": [],
1675
+ "jwtTokenLifetime": 0,
1676
+ "defaultMaxAgeEnabled": false,
1677
+ "defaultMaxAge": 600,
1678
+ "postLogoutRedirectUri": [],
1679
+ "backchannel_logout_session_required": false
1680
+ },
1681
+ "coreUmaClientConfig": {
1682
+ "claimsRedirectionUris": []
1683
+ },
1684
+ "_id": "c5f3cf35-4cc1-42f9-80b3-59e1ca842510",
1685
+ "_type": {
1686
+ "_id": "OAuth2Client",
1687
+ "name": "OAuth2 Clients",
1688
+ "collection": true
1689
+ }
1690
+ },
1691
+ {
1692
+ "coreOAuth2ClientConfig": {
1693
+ "loopbackInterfaceRedirection": false,
1694
+ "defaultScopes": [],
1695
+ "agentgroup": null,
1696
+ "userpassword": null,
1697
+ "refreshTokenLifetime": 0,
1698
+ "scopes": [
1699
+ "openid"
1700
+ ],
1701
+ "status": "Active",
1702
+ "accessTokenLifetime": 0,
1703
+ "redirectionUris": [],
1704
+ "clientName": [],
1705
+ "clientType": "Confidential",
1706
+ "authorizationCodeLifetime": 0
1707
+ },
1708
+ "advancedOAuth2ClientConfig": {
1709
+ "descriptions": [],
1710
+ "requestUris": [],
1711
+ "logoUri": [],
1712
+ "subjectType": "public",
1713
+ "clientUri": [],
1714
+ "tokenExchangeAuthLevel": 0,
1715
+ "name": [],
1716
+ "contacts": [],
1717
+ "responseTypes": [
1718
+ "code",
1719
+ "token",
1720
+ "id_token"
1721
+ ],
1722
+ "updateAccessToken": null,
1723
+ "mixUpMitigation": false,
1724
+ "customProperties": [],
1725
+ "javascriptOrigins": [],
1726
+ "policyUri": [],
1727
+ "softwareVersion": null,
1728
+ "sectorIdentifierUri": null,
1729
+ "tosURI": [],
1730
+ "tokenEndpointAuthMethod": "client_secret_basic",
1731
+ "isConsentImplied": false,
1732
+ "softwareIdentity": null,
1733
+ "grantTypes": [
1734
+ "authorization_code",
1735
+ "client_credentials",
1736
+ "refresh_token"
1737
+ ]
1738
+ },
1739
+ "signEncOAuth2ClientConfig": {
1740
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
1741
+ "idTokenEncryptionEnabled": false,
1742
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1743
+ "requestParameterSignedAlg": null,
1744
+ "clientJwtPublicKey": null,
1745
+ "idTokenPublicEncryptionKey": null,
1746
+ "mTLSSubjectDN": null,
1747
+ "mTLSCertificateBoundAccessTokens": false,
1748
+ "userinfoResponseFormat": "JSON",
1749
+ "publicKeyLocation": "jwks_uri",
1750
+ "tokenIntrospectionResponseFormat": "JSON",
1751
+ "jwkStoreCacheMissCacheTime": 60000,
1752
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
1753
+ "userinfoSignedResponseAlg": null,
1754
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
1755
+ "requestParameterEncryptedAlg": null,
1756
+ "mTLSTrustedCert": null,
1757
+ "jwkSet": null,
1758
+ "idTokenEncryptionMethod": "A128CBC-HS256",
1759
+ "jwksCacheTimeout": 3600000,
1760
+ "userinfoEncryptedResponseAlg": null,
1761
+ "idTokenSignedResponseAlg": "RS256",
1762
+ "jwksUri": null,
1763
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1764
+ "tokenIntrospectionSignedResponseAlg": "RS256",
1765
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
1766
+ },
1767
+ "coreOpenIDClientConfig": {
1768
+ "claims": [],
1769
+ "clientSessionUri": null,
1770
+ "backchannel_logout_uri": null,
1771
+ "defaultAcrValues": [],
1772
+ "jwtTokenLifetime": 0,
1773
+ "defaultMaxAgeEnabled": false,
1774
+ "defaultMaxAge": 600,
1775
+ "postLogoutRedirectUri": [],
1776
+ "backchannel_logout_session_required": false
1777
+ },
1778
+ "coreUmaClientConfig": {
1779
+ "claimsRedirectionUris": []
1780
+ },
1781
+ "_id": "super-app",
1782
+ "_type": {
1783
+ "_id": "OAuth2Client",
1784
+ "name": "OAuth2 Clients",
1785
+ "collection": true
1786
+ }
1787
+ },
1788
+ {
1789
+ "coreOAuth2ClientConfig": {
1790
+ "loopbackInterfaceRedirection": false,
1791
+ "defaultScopes": [],
1792
+ "userpassword": null,
1793
+ "refreshTokenLifetime": 0,
1794
+ "scopes": [
1795
+ "fr:idm:*"
1796
+ ],
1797
+ "status": "Active",
1798
+ "accessTokenLifetime": 0,
1799
+ "redirectionUris": [],
1800
+ "clientName": [],
1801
+ "clientType": "Confidential",
1802
+ "authorizationCodeLifetime": 0
1803
+ },
1804
+ "advancedOAuth2ClientConfig": {
1805
+ "descriptions": [],
1806
+ "requestUris": [],
1807
+ "logoUri": [],
1808
+ "subjectType": "Public",
1809
+ "clientUri": [],
1810
+ "tokenExchangeAuthLevel": 0,
1811
+ "name": [],
1812
+ "contacts": [],
1813
+ "responseTypes": [
1814
+ "code",
1815
+ "token",
1816
+ "id_token",
1817
+ "code token",
1818
+ "token id_token",
1819
+ "code id_token",
1820
+ "code token id_token",
1821
+ "device_code",
1822
+ "device_code id_token"
1823
+ ],
1824
+ "updateAccessToken": null,
1825
+ "mixUpMitigation": false,
1826
+ "customProperties": [],
1827
+ "javascriptOrigins": [],
1828
+ "policyUri": [],
1829
+ "sectorIdentifierUri": null,
1830
+ "tokenEndpointAuthMethod": "client_secret_basic",
1831
+ "isConsentImplied": false,
1832
+ "grantTypes": [
1833
+ "client_credentials"
1834
+ ]
1835
+ },
1836
+ "signEncOAuth2ClientConfig": {
1837
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
1838
+ "idTokenEncryptionEnabled": false,
1839
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1840
+ "requestParameterSignedAlg": null,
1841
+ "clientJwtPublicKey": null,
1842
+ "idTokenPublicEncryptionKey": null,
1843
+ "mTLSSubjectDN": null,
1844
+ "mTLSCertificateBoundAccessTokens": false,
1845
+ "userinfoResponseFormat": "JSON",
1846
+ "publicKeyLocation": "jwks_uri",
1847
+ "tokenIntrospectionResponseFormat": "JSON",
1848
+ "jwkStoreCacheMissCacheTime": 60000,
1849
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
1850
+ "userinfoSignedResponseAlg": null,
1851
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
1852
+ "requestParameterEncryptedAlg": null,
1853
+ "mTLSTrustedCert": null,
1854
+ "jwkSet": null,
1855
+ "idTokenEncryptionMethod": "A128CBC-HS256",
1856
+ "jwksCacheTimeout": 3600000,
1857
+ "userinfoEncryptedResponseAlg": null,
1858
+ "idTokenSignedResponseAlg": "RS256",
1859
+ "jwksUri": "http://am:80/am/oauth2/connect/jwk_uri",
1860
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1861
+ "tokenIntrospectionSignedResponseAlg": "RS256",
1862
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
1863
+ },
1864
+ "coreOpenIDClientConfig": {
1865
+ "claims": [],
1866
+ "clientSessionUri": null,
1867
+ "defaultAcrValues": [],
1868
+ "jwtTokenLifetime": 0,
1869
+ "defaultMaxAgeEnabled": false,
1870
+ "defaultMaxAge": 600,
1871
+ "postLogoutRedirectUri": []
1872
+ },
1873
+ "coreUmaClientConfig": {
1874
+ "claimsRedirectionUris": []
1875
+ },
1876
+ "_id": "RCSClient",
1877
+ "_type": {
1878
+ "_id": "OAuth2Client",
1879
+ "name": "OAuth2 Clients",
1880
+ "collection": true
1881
+ }
1882
+ },
1883
+ {
1884
+ "coreOAuth2ClientConfig": {
1885
+ "loopbackInterfaceRedirection": false,
1886
+ "defaultScopes": [],
1887
+ "userpassword": null,
1888
+ "refreshTokenLifetime": 604800,
1889
+ "scopes": [
1890
+ "fr:idm:*"
1891
+ ],
1892
+ "status": "Active",
1893
+ "accessTokenLifetime": 3600,
1894
+ "redirectionUris": [],
1895
+ "clientName": [],
1896
+ "clientType": "Confidential",
1897
+ "authorizationCodeLifetime": 120
1898
+ },
1899
+ "overrideOAuth2ClientConfig": {
1900
+ "issueRefreshToken": true,
1901
+ "remoteConsentServiceId": null,
1902
+ "tokenEncryptionEnabled": false,
1903
+ "enableRemoteConsent": false,
1904
+ "oidcMayActScript": "[Empty]",
1905
+ "usePolicyEngineForScope": false,
1906
+ "oidcClaimsScript": "36863ffb-40ec-48b9-94b1-9a99f71cc3b5",
1907
+ "overrideableOIDCClaims": [],
1908
+ "accessTokenMayActScript": "[Empty]",
1909
+ "clientsCanSkipConsent": false,
1910
+ "accessTokenModificationScript": "d22f9a0c-426a-4466-b95e-d0f125b0d5fa",
1911
+ "providerOverridesEnabled": false,
1912
+ "issueRefreshTokenOnRefreshedToken": true,
1913
+ "statelessTokensEnabled": false
1914
+ },
1915
+ "advancedOAuth2ClientConfig": {
1916
+ "descriptions": [],
1917
+ "requestUris": [],
1918
+ "logoUri": [],
1919
+ "subjectType": "Public",
1920
+ "clientUri": [],
1921
+ "tokenExchangeAuthLevel": 0,
1922
+ "name": [],
1923
+ "contacts": [],
1924
+ "responseTypes": [
1925
+ "token"
1926
+ ],
1927
+ "updateAccessToken": null,
1928
+ "mixUpMitigation": false,
1929
+ "customProperties": [],
1930
+ "javascriptOrigins": [],
1931
+ "policyUri": [],
1932
+ "softwareVersion": null,
1933
+ "sectorIdentifierUri": null,
1934
+ "tosURI": [],
1935
+ "tokenEndpointAuthMethod": "client_secret_basic",
1936
+ "isConsentImplied": true,
1937
+ "softwareIdentity": null,
1938
+ "grantTypes": [
1939
+ "client_credentials"
1940
+ ]
1941
+ },
1942
+ "signEncOAuth2ClientConfig": {
1943
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
1944
+ "idTokenEncryptionEnabled": false,
1945
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1946
+ "requestParameterSignedAlg": null,
1947
+ "clientJwtPublicKey": null,
1948
+ "idTokenPublicEncryptionKey": null,
1949
+ "mTLSSubjectDN": null,
1950
+ "mTLSCertificateBoundAccessTokens": false,
1951
+ "userinfoResponseFormat": "JSON",
1952
+ "publicKeyLocation": "jwks_uri",
1953
+ "tokenIntrospectionResponseFormat": "JSON",
1954
+ "jwkStoreCacheMissCacheTime": 60000,
1955
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
1956
+ "userinfoSignedResponseAlg": null,
1957
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
1958
+ "requestParameterEncryptedAlg": null,
1959
+ "mTLSTrustedCert": null,
1960
+ "jwkSet": null,
1961
+ "idTokenEncryptionMethod": "A128CBC-HS256",
1962
+ "jwksCacheTimeout": 3600000,
1963
+ "userinfoEncryptedResponseAlg": null,
1964
+ "idTokenSignedResponseAlg": "RS256",
1965
+ "jwksUri": null,
1966
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
1967
+ "tokenIntrospectionSignedResponseAlg": "RS256",
1968
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
1969
+ },
1970
+ "coreOpenIDClientConfig": {
1971
+ "claims": [],
1972
+ "clientSessionUri": null,
1973
+ "backchannel_logout_uri": null,
1974
+ "defaultAcrValues": [],
1975
+ "jwtTokenLifetime": 3600,
1976
+ "defaultMaxAgeEnabled": false,
1977
+ "defaultMaxAge": 600,
1978
+ "postLogoutRedirectUri": [],
1979
+ "backchannel_logout_session_required": false
1980
+ },
1981
+ "coreUmaClientConfig": {
1982
+ "claimsRedirectionUris": []
1983
+ },
1984
+ "_id": "89b4181b-a694-471c-af69-e5ecab53035f",
1985
+ "_type": {
1986
+ "_id": "OAuth2Client",
1987
+ "name": "OAuth2 Clients",
1988
+ "collection": true
1989
+ }
1990
+ },
1991
+ {
1992
+ "coreOAuth2ClientConfig": {
1993
+ "loopbackInterfaceRedirection": false,
1994
+ "defaultScopes": [],
1995
+ "agentgroup": null,
1996
+ "refreshTokenLifetime": 0,
1997
+ "scopes": [
1998
+ "fr:autoaccess:*",
1999
+ "fr:idm:*",
2000
+ "openid"
2001
+ ],
2002
+ "status": "Active",
2003
+ "accessTokenLifetime": 0,
2004
+ "redirectionUris": [
2005
+ "https://openam-volker-dev.forgeblocks.com/enduser/appAuthHelperRedirect.html",
2006
+ "https://openam-volker-dev.forgeblocks.com/enduser/sessionCheck.html",
2007
+ "https://idc.mytestrun.com/enduser/appAuthHelperRedirect.html",
2008
+ "https://idc.mytestrun.com/enduser/sessionCheck.html",
2009
+ "https://idc.scheuber.io/enduser/appAuthHelperRedirect.html",
2010
+ "https://idc.scheuber.io/enduser/sessionCheck.html"
2011
+ ],
2012
+ "clientName": [],
2013
+ "clientType": "Public",
2014
+ "authorizationCodeLifetime": 0
2015
+ },
2016
+ "overrideOAuth2ClientConfig": {
2017
+ "issueRefreshToken": false,
2018
+ "remoteConsentServiceId": "[Empty]",
2019
+ "tokenEncryptionEnabled": false,
2020
+ "enableRemoteConsent": false,
2021
+ "customLoginUrlTemplate": null,
2022
+ "oidcMayActScript": "[Empty]",
2023
+ "usePolicyEngineForScope": false,
2024
+ "oidcClaimsScript": "e1db8a0a-0329-4962-a5bf-ecffaca376ae",
2025
+ "overrideableOIDCClaims": [],
2026
+ "accessTokenModificationPluginType": "SCRIPTED",
2027
+ "accessTokenMayActScript": "[Empty]",
2028
+ "clientsCanSkipConsent": true,
2029
+ "accessTokenModificationScript": "e232cff3-2460-47cd-80b2-36c86c0d0f06",
2030
+ "providerOverridesEnabled": true,
2031
+ "issueRefreshTokenOnRefreshedToken": false,
2032
+ "statelessTokensEnabled": true
2033
+ },
2034
+ "advancedOAuth2ClientConfig": {
2035
+ "descriptions": [],
2036
+ "requestUris": [],
2037
+ "logoUri": [],
2038
+ "subjectType": "public",
2039
+ "clientUri": [],
2040
+ "name": [],
2041
+ "contacts": [],
2042
+ "responseTypes": [
2043
+ "code",
2044
+ "token",
2045
+ "id_token",
2046
+ "code token",
2047
+ "token id_token",
2048
+ "code id_token",
2049
+ "code token id_token",
2050
+ "device_code",
2051
+ "device_code id_token"
2052
+ ],
2053
+ "updateAccessToken": null,
2054
+ "mixUpMitigation": false,
2055
+ "javascriptOrigins": [],
2056
+ "policyUri": [],
2057
+ "sectorIdentifierUri": null,
2058
+ "tokenEndpointAuthMethod": "none",
2059
+ "isConsentImplied": true,
2060
+ "grantTypes": [
2061
+ "authorization_code",
2062
+ "implicit"
2063
+ ]
2064
+ },
2065
+ "signEncOAuth2ClientConfig": {
2066
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
2067
+ "idTokenEncryptionEnabled": false,
2068
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
2069
+ "requestParameterSignedAlg": null,
2070
+ "clientJwtPublicKey": null,
2071
+ "idTokenPublicEncryptionKey": null,
2072
+ "mTLSSubjectDN": null,
2073
+ "mTLSCertificateBoundAccessTokens": false,
2074
+ "userinfoResponseFormat": "JSON",
2075
+ "publicKeyLocation": "jwks_uri",
2076
+ "tokenIntrospectionResponseFormat": "JSON",
2077
+ "jwkStoreCacheMissCacheTime": 60000,
2078
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
2079
+ "userinfoSignedResponseAlg": null,
2080
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
2081
+ "requestParameterEncryptedAlg": null,
2082
+ "mTLSTrustedCert": null,
2083
+ "jwkSet": null,
2084
+ "idTokenEncryptionMethod": "A128CBC-HS256",
2085
+ "jwksCacheTimeout": 3600000,
2086
+ "userinfoEncryptedResponseAlg": null,
2087
+ "idTokenSignedResponseAlg": "RS256",
2088
+ "jwksUri": "http://am:80/am/oauth2/connect/jwk_uri",
2089
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
2090
+ "tokenIntrospectionSignedResponseAlg": "RS256",
2091
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
2092
+ },
2093
+ "coreOpenIDClientConfig": {
2094
+ "claims": [],
2095
+ "clientSessionUri": null,
2096
+ "defaultAcrValues": [],
2097
+ "jwtTokenLifetime": 0,
2098
+ "defaultMaxAgeEnabled": false,
2099
+ "defaultMaxAge": 600,
2100
+ "postLogoutRedirectUri": []
2101
+ },
2102
+ "coreUmaClientConfig": {
2103
+ "claimsRedirectionUris": []
2104
+ },
2105
+ "_id": "endUserUIClient",
2106
+ "_type": {
2107
+ "_id": "OAuth2Client",
2108
+ "name": "OAuth2 Clients",
2109
+ "collection": true
2110
+ }
2111
+ },
2112
+ {
2113
+ "signEncOAuth2ClientConfig": {
2114
+ "userinfoResponseFormat": "JSON",
2115
+ "mTLSCertificateBoundAccessTokens": false,
2116
+ "publicKeyLocation": "x509",
2117
+ "tokenIntrospectionResponseFormat": "JSON",
2118
+ "userinfoSignedResponseAlg": null,
2119
+ "idTokenEncryptionEnabled": false,
2120
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
2121
+ "requestParameterEncryptedAlg": null,
2122
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
2123
+ "requestParameterSignedAlg": null,
2124
+ "idTokenEncryptionMethod": "A128CBC-HS256",
2125
+ "userinfoEncryptedResponseAlg": null,
2126
+ "idTokenSignedResponseAlg": "RS256",
2127
+ "tokenIntrospectionSignedResponseAlg": "RS256",
2128
+ "userinfoEncryptedResponseEncryptionAlgorithm": null,
2129
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
2130
+ },
2131
+ "coreOpenIDClientConfig": {
2132
+ "jwtTokenLifetime": 0,
2133
+ "defaultMaxAgeEnabled": false,
2134
+ "defaultMaxAge": 1,
2135
+ "defaultAcrValues": [],
2136
+ "backchannel_logout_session_required": false
2137
+ },
2138
+ "coreOAuth2ClientConfig": {
2139
+ "scopes": [
2140
+ "address",
2141
+ "phone",
2142
+ "openid",
2143
+ "profile",
2144
+ "email"
2145
+ ],
2146
+ "status": "Active",
2147
+ "accessTokenLifetime": 0,
2148
+ "redirectionUris": [
2149
+ "https://openam-volker-dev.forgeblocks.com"
2150
+ ],
2151
+ "clientName": [
2152
+ "en|My Client",
2153
+ "ja-jpan-jp|クライアント名"
2154
+ ],
2155
+ "clientType": "Confidential",
2156
+ "defaultScopes": [],
2157
+ "userpassword": null,
2158
+ "authorizationCodeLifetime": 0,
2159
+ "refreshTokenLifetime": 0
2160
+ },
2161
+ "advancedOAuth2ClientConfig": {
2162
+ "subjectType": "public",
2163
+ "clientUri": [
2164
+ "https://openam-volker-dev.forgeblocks.com"
2165
+ ],
2166
+ "tokenEndpointAuthMethod": "client_secret_basic",
2167
+ "responseTypes": [
2168
+ "code"
2169
+ ],
2170
+ "updateAccessToken": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJkMzIyZGQ3Yi1hN2FjLTRlNjctOGNmNS0xNWYyYTNhZTRmZjYiLCJjdHMiOiJPQVVUSDJfR1JBTlRfU0VUIiwiYXVkaXRUcmFja2luZ0lkIjoiYjU4ZmZlZDQtZTkxNy00MjJkLTg2NjktNzNkNTIwMjVjYTMyLTEyOTM1NSIsInN1Ym5hbWUiOiJkMzIyZGQ3Yi1hN2FjLTRlNjctOGNmNS0xNWYyYTNhZTRmZjYiLCJpc3MiOiJodHRwczovL29wZW5hbS12b2xrZXItZGV2LmZvcmdlYmxvY2tzLmNvbTo0NDMvYW0vb2F1dGgyL2FscGhhIiwidG9rZW5OYW1lIjoiYWNjZXNzX3Rva2VuIiwidG9rZW5fdHlwZSI6IkJlYXJlciIsImF1dGhHcmFudElkIjoiVEpBNVMtLVUwY05vcWh1ZDVuUy14am9ocm5NLnpfYmlsN2U4TWZvX3JVY1JxVmd5QURBM3o4SSIsImF1ZCI6ImQzMjJkZDdiLWE3YWMtNGU2Ny04Y2Y1LTE1ZjJhM2FlNGZmNiIsIm5iZiI6MTY0NjcwODcwNCwiZ3JhbnRfdHlwZSI6ImR5bmFtaWNfY2xpZW50X3JlZ2lzdHJhdGlvbiIsInNjb3BlIjpbXSwiYXV0aF90aW1lIjoxNjQ2NzA4NzA0LCJyZWFsbSI6Ii9hbHBoYSIsImV4cCI6MTY0NjcxMjMwNCwiaWF0IjoxNjQ2NzA4NzA0LCJleHBpcmVzX2luIjozNjAwLCJqdGkiOiJUSkE1Uy0tVTBjTm9xaHVkNW5TLXhqb2hybk0uNlNDWXVEQnRaTk5nZWl5aldTZE5sdE85Tm04IiwibWF5X2FjdCI6eyJjbGllbnRfaWQiOltudWxsXX19.PE3Ks8wV2dK2YpYL_Lv44OguJorTU-O5t3UYkF1LEYs",
2171
+ "grantTypes": [
2172
+ "authorization_code"
2173
+ ]
2174
+ },
2175
+ "_id": "d322dd7b-a7ac-4e67-8cf5-15f2a3ae4ff6",
2176
+ "_type": {
2177
+ "_id": "OAuth2Client",
2178
+ "name": "OAuth2 Clients",
2179
+ "collection": true
2180
+ }
2181
+ },
2182
+ {
2183
+ "coreOAuth2ClientConfig": {
2184
+ "loopbackInterfaceRedirection": false,
2185
+ "defaultScopes": [],
2186
+ "agentgroup": null,
2187
+ "userpassword": null,
2188
+ "refreshTokenLifetime": 3600,
2189
+ "scopes": [
2190
+ "test3"
2191
+ ],
2192
+ "status": "Active",
2193
+ "accessTokenLifetime": 315576000,
2194
+ "redirectionUris": [
2195
+ "https://openam-sandeep-dev.forgeblocks.com/platform/appAuthHelperRedirect.html"
2196
+ ],
2197
+ "clientName": [],
2198
+ "clientType": "Confidential",
2199
+ "authorizationCodeLifetime": 600
2200
+ },
2201
+ "overrideOAuth2ClientConfig": {
2202
+ "issueRefreshToken": true,
2203
+ "remoteConsentServiceId": null,
2204
+ "tokenEncryptionEnabled": false,
2205
+ "enableRemoteConsent": false,
2206
+ "customLoginUrlTemplate": null,
2207
+ "oidcMayActScript": "[Empty]",
2208
+ "usePolicyEngineForScope": false,
2209
+ "oidcClaimsScript": "36863ffb-40ec-48b9-94b1-9a99f71cc3b5",
2210
+ "overrideableOIDCClaims": [],
2211
+ "accessTokenMayActScript": "[Empty]",
2212
+ "clientsCanSkipConsent": false,
2213
+ "accessTokenModificationScript": "d22f9a0c-426a-4466-b95e-d0f125b0d5fa",
2214
+ "providerOverridesEnabled": false,
2215
+ "issueRefreshTokenOnRefreshedToken": true,
2216
+ "statelessTokensEnabled": false
2217
+ },
2218
+ "advancedOAuth2ClientConfig": {
2219
+ "descriptions": [],
2220
+ "requestUris": [],
2221
+ "logoUri": [],
2222
+ "subjectType": "public",
2223
+ "clientUri": [],
2224
+ "tokenExchangeAuthLevel": 0,
2225
+ "name": [],
2226
+ "contacts": [],
2227
+ "responseTypes": [
2228
+ "token"
2229
+ ],
2230
+ "updateAccessToken": null,
2231
+ "mixUpMitigation": false,
2232
+ "customProperties": [],
2233
+ "javascriptOrigins": [
2234
+ "https://openam-sandeep-dev.forgeblocks.com",
2235
+ "https://openam-sandeep-dev.forgeblocks.com:443"
2236
+ ],
2237
+ "policyUri": [],
2238
+ "softwareVersion": null,
2239
+ "sectorIdentifierUri": null,
2240
+ "tosURI": [],
2241
+ "tokenEndpointAuthMethod": "client_secret_post",
2242
+ "isConsentImplied": true,
2243
+ "softwareIdentity": null,
2244
+ "grantTypes": [
2245
+ "authorization_code",
2246
+ "refresh_token",
2247
+ "password"
2248
+ ]
2249
+ },
2250
+ "signEncOAuth2ClientConfig": {
2251
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
2252
+ "idTokenEncryptionEnabled": false,
2253
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
2254
+ "requestParameterSignedAlg": null,
2255
+ "clientJwtPublicKey": null,
2256
+ "idTokenPublicEncryptionKey": null,
2257
+ "mTLSSubjectDN": null,
2258
+ "mTLSCertificateBoundAccessTokens": false,
2259
+ "userinfoResponseFormat": "JSON",
2260
+ "publicKeyLocation": "jwks_uri",
2261
+ "tokenIntrospectionResponseFormat": "JSON",
2262
+ "jwkStoreCacheMissCacheTime": 60000,
2263
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
2264
+ "userinfoSignedResponseAlg": null,
2265
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
2266
+ "requestParameterEncryptedAlg": null,
2267
+ "mTLSTrustedCert": null,
2268
+ "jwkSet": null,
2269
+ "idTokenEncryptionMethod": "A128CBC-HS256",
2270
+ "jwksCacheTimeout": 3600000,
2271
+ "userinfoEncryptedResponseAlg": null,
2272
+ "idTokenSignedResponseAlg": "RS256",
2273
+ "jwksUri": null,
2274
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
2275
+ "tokenIntrospectionSignedResponseAlg": "RS256",
2276
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
2277
+ },
2278
+ "coreOpenIDClientConfig": {
2279
+ "claims": [],
2280
+ "clientSessionUri": null,
2281
+ "backchannel_logout_uri": null,
2282
+ "defaultAcrValues": [],
2283
+ "jwtTokenLifetime": 3600,
2284
+ "defaultMaxAgeEnabled": false,
2285
+ "defaultMaxAge": 600,
2286
+ "postLogoutRedirectUri": [],
2287
+ "backchannel_logout_session_required": false
2288
+ },
2289
+ "coreUmaClientConfig": {
2290
+ "claimsRedirectionUris": []
2291
+ },
2292
+ "_id": "journey",
2293
+ "_type": {
2294
+ "_id": "OAuth2Client",
2295
+ "name": "OAuth2 Clients",
2296
+ "collection": true
2297
+ }
2298
+ },
2299
+ {
2300
+ "signEncOAuth2ClientConfig": {
2301
+ "userinfoResponseFormat": "JSON",
2302
+ "mTLSCertificateBoundAccessTokens": false,
2303
+ "publicKeyLocation": "x509",
2304
+ "tokenIntrospectionResponseFormat": "JSON",
2305
+ "userinfoSignedResponseAlg": null,
2306
+ "idTokenEncryptionEnabled": false,
2307
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
2308
+ "requestParameterEncryptedAlg": null,
2309
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
2310
+ "requestParameterSignedAlg": null,
2311
+ "idTokenEncryptionMethod": "A128CBC-HS256",
2312
+ "userinfoEncryptedResponseAlg": null,
2313
+ "idTokenSignedResponseAlg": "RS256",
2314
+ "tokenIntrospectionSignedResponseAlg": "RS256",
2315
+ "userinfoEncryptedResponseEncryptionAlgorithm": null,
2316
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
2317
+ },
2318
+ "coreOpenIDClientConfig": {
2319
+ "jwtTokenLifetime": 0,
2320
+ "defaultMaxAgeEnabled": false,
2321
+ "defaultMaxAge": 1,
2322
+ "defaultAcrValues": [],
2323
+ "backchannel_logout_session_required": false
2324
+ },
2325
+ "coreOAuth2ClientConfig": {
2326
+ "scopes": [
2327
+ "address",
2328
+ "phone",
2329
+ "openid",
2330
+ "profile",
2331
+ "email"
2332
+ ],
2333
+ "status": "Active",
2334
+ "accessTokenLifetime": 0,
2335
+ "redirectionUris": [
2336
+ "https://openam-volker-dev.forgeblocks.com"
2337
+ ],
2338
+ "clientName": [
2339
+ "en|My Client2",
2340
+ "ja-jpan-jp|クライアント名"
2341
+ ],
2342
+ "clientType": "Confidential",
2343
+ "defaultScopes": [],
2344
+ "userpassword": null,
2345
+ "authorizationCodeLifetime": 0,
2346
+ "refreshTokenLifetime": 0
2347
+ },
2348
+ "advancedOAuth2ClientConfig": {
2349
+ "subjectType": "public",
2350
+ "tokenEndpointAuthMethod": "client_secret_basic",
2351
+ "responseTypes": [
2352
+ "code"
2353
+ ],
2354
+ "updateAccessToken": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIyYTI3NzNlMC1jNTM0LTQxNWYtOTA3MC1mZDczZWMyMjRlYzAiLCJjdHMiOiJPQVVUSDJfR1JBTlRfU0VUIiwiYXVkaXRUcmFja2luZ0lkIjoiYjU4ZmZlZDQtZTkxNy00MjJkLTg2NjktNzNkNTIwMjVjYTMyLTEzMDA4NiIsInN1Ym5hbWUiOiIyYTI3NzNlMC1jNTM0LTQxNWYtOTA3MC1mZDczZWMyMjRlYzAiLCJpc3MiOiJodHRwczovL29wZW5hbS12b2xrZXItZGV2LmZvcmdlYmxvY2tzLmNvbTo0NDMvYW0vb2F1dGgyL2FscGhhIiwidG9rZW5OYW1lIjoiYWNjZXNzX3Rva2VuIiwidG9rZW5fdHlwZSI6IkJlYXJlciIsImF1dGhHcmFudElkIjoiZXUyY2FTR0VfVlM0eFpOMmpwdXlRc1B1Nkg0Lm1pY2RKWFAzWWVUd0lFUmpPbFdnbGppRkx6USIsImF1ZCI6IjJhMjc3M2UwLWM1MzQtNDE1Zi05MDcwLWZkNzNlYzIyNGVjMCIsIm5iZiI6MTY0NjcwODc2NCwiZ3JhbnRfdHlwZSI6ImR5bmFtaWNfY2xpZW50X3JlZ2lzdHJhdGlvbiIsInNjb3BlIjpbXSwiYXV0aF90aW1lIjoxNjQ2NzA4NzY0LCJyZWFsbSI6Ii9hbHBoYSIsImV4cCI6MTY0NjcxMjM2NCwiaWF0IjoxNjQ2NzA4NzY0LCJleHBpcmVzX2luIjozNjAwLCJqdGkiOiJldTJjYVNHRV9WUzR4Wk4yanB1eVFzUHU2SDQuMUw0RHZ5V0NEMi10X0NfZHMxVEd2Y3dJZ1NNIiwibWF5X2FjdCI6eyJjbGllbnRfaWQiOltudWxsXX19.XIx7BcYkTjGGBCx9Hm7-C9Cb_1GeBwqyw__wM9zT4DE",
2355
+ "grantTypes": [
2356
+ "authorization_code"
2357
+ ]
2358
+ },
2359
+ "_id": "2a2773e0-c534-415f-9070-fd73ec224ec0",
2360
+ "_type": {
2361
+ "_id": "OAuth2Client",
2362
+ "name": "OAuth2 Clients",
2363
+ "collection": true
2364
+ }
2365
+ },
2366
+ {
2367
+ "coreOAuth2ClientConfig": {
2368
+ "loopbackInterfaceRedirection": false,
2369
+ "defaultScopes": [],
2370
+ "userpassword": null,
2371
+ "refreshTokenLifetime": 0,
2372
+ "scopes": [
2373
+ "openid",
2374
+ "profile",
2375
+ "email"
2376
+ ],
2377
+ "status": "Active",
2378
+ "accessTokenLifetime": 0,
2379
+ "redirectionUris": [
2380
+ "https://idp37.mytestrun.com/openam/XUI"
2381
+ ],
2382
+ "clientName": [],
2383
+ "clientType": "Confidential",
2384
+ "authorizationCodeLifetime": 0
2385
+ },
2386
+ "advancedOAuth2ClientConfig": {
2387
+ "descriptions": [],
2388
+ "requestUris": [],
2389
+ "logoUri": [],
2390
+ "subjectType": "public",
2391
+ "clientUri": [],
2392
+ "tokenExchangeAuthLevel": 0,
2393
+ "name": [],
2394
+ "contacts": [],
2395
+ "responseTypes": [
2396
+ "code",
2397
+ "token",
2398
+ "id_token"
2399
+ ],
2400
+ "updateAccessToken": null,
2401
+ "mixUpMitigation": false,
2402
+ "customProperties": [],
2403
+ "javascriptOrigins": [
2404
+ "https://idp37.mytestrun.com",
2405
+ "https://idp37.mytestrun.com:443"
2406
+ ],
2407
+ "policyUri": [],
2408
+ "softwareVersion": null,
2409
+ "sectorIdentifierUri": null,
2410
+ "tosURI": [],
2411
+ "tokenEndpointAuthMethod": "client_secret_basic",
2412
+ "isConsentImplied": true,
2413
+ "softwareIdentity": null,
2414
+ "grantTypes": [
2415
+ "authorization_code",
2416
+ "client_credentials",
2417
+ "refresh_token"
2418
+ ]
2419
+ },
2420
+ "signEncOAuth2ClientConfig": {
2421
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
2422
+ "idTokenEncryptionEnabled": false,
2423
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
2424
+ "requestParameterSignedAlg": null,
2425
+ "clientJwtPublicKey": null,
2426
+ "idTokenPublicEncryptionKey": null,
2427
+ "mTLSSubjectDN": null,
2428
+ "mTLSCertificateBoundAccessTokens": false,
2429
+ "userinfoResponseFormat": "JSON",
2430
+ "publicKeyLocation": "jwks_uri",
2431
+ "tokenIntrospectionResponseFormat": "JSON",
2432
+ "jwkStoreCacheMissCacheTime": 60000,
2433
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
2434
+ "userinfoSignedResponseAlg": null,
2435
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
2436
+ "requestParameterEncryptedAlg": null,
2437
+ "mTLSTrustedCert": null,
2438
+ "jwkSet": null,
2439
+ "idTokenEncryptionMethod": "A128CBC-HS256",
2440
+ "jwksCacheTimeout": 3600000,
2441
+ "userinfoEncryptedResponseAlg": null,
2442
+ "idTokenSignedResponseAlg": "RS256",
2443
+ "jwksUri": null,
2444
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
2445
+ "tokenIntrospectionSignedResponseAlg": "RS256",
2446
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
2447
+ },
2448
+ "coreOpenIDClientConfig": {
2449
+ "claims": [],
2450
+ "clientSessionUri": null,
2451
+ "backchannel_logout_uri": null,
2452
+ "defaultAcrValues": [
2453
+ "azureOIDC"
2454
+ ],
2455
+ "jwtTokenLifetime": 0,
2456
+ "defaultMaxAgeEnabled": false,
2457
+ "defaultMaxAge": 600,
2458
+ "postLogoutRedirectUri": [],
2459
+ "backchannel_logout_session_required": false
2460
+ },
2461
+ "coreUmaClientConfig": {
2462
+ "claimsRedirectionUris": []
2463
+ },
2464
+ "_id": "onprem",
2465
+ "_type": {
2466
+ "_id": "OAuth2Client",
2467
+ "name": "OAuth2 Clients",
2468
+ "collection": true
2469
+ }
2470
+ },
2471
+ {
2472
+ "coreOAuth2ClientConfig": {
2473
+ "loopbackInterfaceRedirection": false,
2474
+ "defaultScopes": [],
2475
+ "userpassword": null,
2476
+ "refreshTokenLifetime": 0,
2477
+ "scopes": [
2478
+ "openid",
2479
+ "profile",
2480
+ "email",
2481
+ "patient/Patient.read",
2482
+ "patient/*.read",
2483
+ "patient/Coverage.read",
2484
+ "patient/ExplanationOfBenefit.read",
2485
+ "am-introspect-all-tokens"
2486
+ ],
2487
+ "status": "Active",
2488
+ "accessTokenLifetime": 0,
2489
+ "redirectionUris": [
2490
+ "https://openam-volker-dev.forgeblocks.com",
2491
+ "https://idc.scheuber.io/enduser"
2492
+ ],
2493
+ "clientName": [
2494
+ "FHIR App"
2495
+ ],
2496
+ "clientType": "Confidential",
2497
+ "authorizationCodeLifetime": 0
2498
+ },
2499
+ "advancedOAuth2ClientConfig": {
2500
+ "descriptions": [
2501
+ "FHIR Application"
2502
+ ],
2503
+ "requestUris": [],
2504
+ "logoUri": [],
2505
+ "subjectType": "public",
2506
+ "clientUri": [],
2507
+ "tokenExchangeAuthLevel": 0,
2508
+ "name": [],
2509
+ "contacts": [],
2510
+ "responseTypes": [
2511
+ "code",
2512
+ "token",
2513
+ "id_token"
2514
+ ],
2515
+ "updateAccessToken": null,
2516
+ "mixUpMitigation": false,
2517
+ "customProperties": [],
2518
+ "javascriptOrigins": [
2519
+ "https://idc.scheuber.io",
2520
+ "https://idc.scheuber.io:443",
2521
+ "https://openam-volker-dev.forgeblocks.com",
2522
+ "https://openam-volker-dev.forgeblocks.com:443"
2523
+ ],
2524
+ "policyUri": [],
2525
+ "softwareVersion": null,
2526
+ "sectorIdentifierUri": null,
2527
+ "tosURI": [],
2528
+ "tokenEndpointAuthMethod": "client_secret_basic",
2529
+ "isConsentImplied": true,
2530
+ "softwareIdentity": null,
2531
+ "grantTypes": [
2532
+ "authorization_code"
2533
+ ]
2534
+ },
2535
+ "signEncOAuth2ClientConfig": {
2536
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
2537
+ "idTokenEncryptionEnabled": false,
2538
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
2539
+ "requestParameterSignedAlg": null,
2540
+ "clientJwtPublicKey": null,
2541
+ "idTokenPublicEncryptionKey": null,
2542
+ "mTLSSubjectDN": null,
2543
+ "mTLSCertificateBoundAccessTokens": false,
2544
+ "userinfoResponseFormat": "JSON",
2545
+ "publicKeyLocation": "jwks_uri",
2546
+ "tokenIntrospectionResponseFormat": "JSON",
2547
+ "jwkStoreCacheMissCacheTime": 60000,
2548
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
2549
+ "userinfoSignedResponseAlg": null,
2550
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
2551
+ "requestParameterEncryptedAlg": null,
2552
+ "mTLSTrustedCert": null,
2553
+ "jwkSet": null,
2554
+ "idTokenEncryptionMethod": "A128CBC-HS256",
2555
+ "jwksCacheTimeout": 3600000,
2556
+ "userinfoEncryptedResponseAlg": null,
2557
+ "idTokenSignedResponseAlg": "RS256",
2558
+ "jwksUri": null,
2559
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
2560
+ "tokenIntrospectionSignedResponseAlg": "RS256",
2561
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
2562
+ },
2563
+ "coreOpenIDClientConfig": {
2564
+ "claims": [],
2565
+ "clientSessionUri": null,
2566
+ "backchannel_logout_uri": null,
2567
+ "defaultAcrValues": [
2568
+ "customui"
2569
+ ],
2570
+ "jwtTokenLifetime": 0,
2571
+ "defaultMaxAgeEnabled": false,
2572
+ "defaultMaxAge": 600,
2573
+ "postLogoutRedirectUri": [],
2574
+ "backchannel_logout_session_required": false
2575
+ },
2576
+ "coreUmaClientConfig": {
2577
+ "claimsRedirectionUris": []
2578
+ },
2579
+ "_id": "fhirapp",
2580
+ "_type": {
2581
+ "_id": "OAuth2Client",
2582
+ "name": "OAuth2 Clients",
2583
+ "collection": true
2584
+ }
2585
+ },
2586
+ {
2587
+ "coreOAuth2ClientConfig": {
2588
+ "loopbackInterfaceRedirection": false,
2589
+ "defaultScopes": [],
2590
+ "userpassword": null,
2591
+ "refreshTokenLifetime": 0,
2592
+ "scopes": [
2593
+ "fr:idm:*"
2594
+ ],
2595
+ "status": "Active",
2596
+ "accessTokenLifetime": 315360000,
2597
+ "redirectionUris": [
2598
+ "https://openam-volker-dev.forgeblocks.com"
2599
+ ],
2600
+ "clientName": [
2601
+ "Router"
2602
+ ],
2603
+ "clientType": "Confidential",
2604
+ "authorizationCodeLifetime": 0
2605
+ },
2606
+ "overrideOAuth2ClientConfig": {
2607
+ "issueRefreshToken": true,
2608
+ "remoteConsentServiceId": null,
2609
+ "tokenEncryptionEnabled": false,
2610
+ "enableRemoteConsent": false,
2611
+ "oidcMayActScript": "[Empty]",
2612
+ "usePolicyEngineForScope": false,
2613
+ "oidcClaimsScript": "36863ffb-40ec-48b9-94b1-9a99f71cc3b5",
2614
+ "overrideableOIDCClaims": [],
2615
+ "accessTokenMayActScript": "[Empty]",
2616
+ "clientsCanSkipConsent": false,
2617
+ "accessTokenModificationScript": "d22f9a0c-426a-4466-b95e-d0f125b0d5fa",
2618
+ "providerOverridesEnabled": false,
2619
+ "issueRefreshTokenOnRefreshedToken": true,
2620
+ "statelessTokensEnabled": false
2621
+ },
2622
+ "advancedOAuth2ClientConfig": {
2623
+ "descriptions": [
2624
+ "Router Service Account"
2625
+ ],
2626
+ "requestUris": [],
2627
+ "logoUri": [],
2628
+ "subjectType": "Public",
2629
+ "clientUri": [],
2630
+ "tokenExchangeAuthLevel": 0,
2631
+ "name": [],
2632
+ "contacts": [],
2633
+ "responseTypes": [
2634
+ "token",
2635
+ "id_token"
2636
+ ],
2637
+ "updateAccessToken": null,
2638
+ "mixUpMitigation": false,
2639
+ "customProperties": [],
2640
+ "javascriptOrigins": [
2641
+ "https://openam-volker-dev.forgeblocks.com",
2642
+ "https://openam-volker-dev.forgeblocks.com:443"
2643
+ ],
2644
+ "policyUri": [],
2645
+ "softwareVersion": null,
2646
+ "sectorIdentifierUri": null,
2647
+ "tosURI": [],
2648
+ "tokenEndpointAuthMethod": "client_secret_basic",
2649
+ "isConsentImplied": true,
2650
+ "softwareIdentity": null,
2651
+ "grantTypes": [
2652
+ "password"
2653
+ ]
2654
+ },
2655
+ "signEncOAuth2ClientConfig": {
2656
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
2657
+ "idTokenEncryptionEnabled": false,
2658
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
2659
+ "requestParameterSignedAlg": null,
2660
+ "clientJwtPublicKey": null,
2661
+ "idTokenPublicEncryptionKey": null,
2662
+ "mTLSSubjectDN": null,
2663
+ "mTLSCertificateBoundAccessTokens": false,
2664
+ "userinfoResponseFormat": "JSON",
2665
+ "publicKeyLocation": "jwks_uri",
2666
+ "tokenIntrospectionResponseFormat": "JSON",
2667
+ "jwkStoreCacheMissCacheTime": 60000,
2668
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
2669
+ "userinfoSignedResponseAlg": null,
2670
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
2671
+ "requestParameterEncryptedAlg": null,
2672
+ "mTLSTrustedCert": null,
2673
+ "jwkSet": null,
2674
+ "idTokenEncryptionMethod": "A128CBC-HS256",
2675
+ "jwksCacheTimeout": 3600000,
2676
+ "userinfoEncryptedResponseAlg": null,
2677
+ "idTokenSignedResponseAlg": "RS256",
2678
+ "jwksUri": null,
2679
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
2680
+ "tokenIntrospectionSignedResponseAlg": "RS256",
2681
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
2682
+ },
2683
+ "coreOpenIDClientConfig": {
2684
+ "claims": [],
2685
+ "clientSessionUri": null,
2686
+ "backchannel_logout_uri": null,
2687
+ "defaultAcrValues": [],
2688
+ "jwtTokenLifetime": 0,
2689
+ "defaultMaxAgeEnabled": false,
2690
+ "defaultMaxAge": 600,
2691
+ "postLogoutRedirectUri": [],
2692
+ "backchannel_logout_session_required": false
2693
+ },
2694
+ "coreUmaClientConfig": {
2695
+ "claimsRedirectionUris": []
2696
+ },
2697
+ "_id": "69d05c11-e8fe-4ae5-a7c9-2252a4d85df4",
2698
+ "_type": {
2699
+ "_id": "OAuth2Client",
2700
+ "name": "OAuth2 Clients",
2701
+ "collection": true
2702
+ }
2703
+ },
2704
+ {
2705
+ "signEncOAuth2ClientConfig": {
2706
+ "userinfoResponseFormat": "JSON",
2707
+ "mTLSCertificateBoundAccessTokens": false,
2708
+ "publicKeyLocation": "x509",
2709
+ "tokenIntrospectionResponseFormat": "JSON",
2710
+ "userinfoSignedResponseAlg": null,
2711
+ "idTokenEncryptionEnabled": false,
2712
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
2713
+ "requestParameterEncryptedAlg": null,
2714
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
2715
+ "requestParameterSignedAlg": null,
2716
+ "idTokenEncryptionMethod": "A128CBC-HS256",
2717
+ "userinfoEncryptedResponseAlg": null,
2718
+ "idTokenSignedResponseAlg": "RS256",
2719
+ "tokenIntrospectionSignedResponseAlg": "RS256",
2720
+ "userinfoEncryptedResponseEncryptionAlgorithm": null,
2721
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
2722
+ },
2723
+ "coreOpenIDClientConfig": {
2724
+ "jwtTokenLifetime": 0,
2725
+ "defaultMaxAgeEnabled": false,
2726
+ "defaultMaxAge": 1,
2727
+ "defaultAcrValues": [],
2728
+ "backchannel_logout_session_required": false
2729
+ },
2730
+ "coreOAuth2ClientConfig": {
2731
+ "scopes": [
2732
+ "openid",
2733
+ "profile"
2734
+ ],
2735
+ "status": "Active",
2736
+ "accessTokenLifetime": 0,
2737
+ "redirectionUris": [
2738
+ "https://openam-volker-dev.forgeblocks.com"
2739
+ ],
2740
+ "clientName": [
2741
+ "en|My Client3",
2742
+ "ja-jpan-jp|クライアント名"
2743
+ ],
2744
+ "clientType": "Confidential",
2745
+ "defaultScopes": [],
2746
+ "userpassword": null,
2747
+ "authorizationCodeLifetime": 0,
2748
+ "refreshTokenLifetime": 0
2749
+ },
2750
+ "advancedOAuth2ClientConfig": {
2751
+ "subjectType": "public",
2752
+ "tokenEndpointAuthMethod": "client_secret_basic",
2753
+ "responseTypes": [
2754
+ "code",
2755
+ "id_token code"
2756
+ ],
2757
+ "updateAccessToken": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI5ZTU4ZDJiYi04ZDRiLTQzYzMtYTAwNy1iYmRhNjBhMmY3MDQiLCJjdHMiOiJPQVVUSDJfR1JBTlRfU0VUIiwiYXVkaXRUcmFja2luZ0lkIjoiYjU4ZmZlZDQtZTkxNy00MjJkLTg2NjktNzNkNTIwMjVjYTMyLTE0MTY1MiIsInN1Ym5hbWUiOiI5ZTU4ZDJiYi04ZDRiLTQzYzMtYTAwNy1iYmRhNjBhMmY3MDQiLCJpc3MiOiJodHRwczovL29wZW5hbS12b2xrZXItZGV2LmZvcmdlYmxvY2tzLmNvbTo0NDMvYW0vb2F1dGgyL2FscGhhIiwidG9rZW5OYW1lIjoiYWNjZXNzX3Rva2VuIiwidG9rZW5fdHlwZSI6IkJlYXJlciIsImF1dGhHcmFudElkIjoick1kMGVSYzNBVHZMNGdHZkN6czY5SnBxWm13LlpKMHJEeF9iR3FfUF9USHJtWVNUekpoUzNQRSIsImF1ZCI6IjllNThkMmJiLThkNGItNDNjMy1hMDA3LWJiZGE2MGEyZjcwNCIsIm5iZiI6MTY0NjcwOTcyNSwiZ3JhbnRfdHlwZSI6ImR5bmFtaWNfY2xpZW50X3JlZ2lzdHJhdGlvbiIsInNjb3BlIjpbXSwiYXV0aF90aW1lIjoxNjQ2NzA5NzI1LCJyZWFsbSI6Ii9hbHBoYSIsImV4cCI6MTY0NjcxMzMyNSwiaWF0IjoxNjQ2NzA5NzI1LCJleHBpcmVzX2luIjozNjAwLCJqdGkiOiJyTWQwZVJjM0FUdkw0Z0dmQ3pzNjlKcHFabXcucmpuWkxkcVByODV4RE1lU2ZiQm4ycGpkaVBzIiwibWF5X2FjdCI6eyJjbGllbnRfaWQiOltudWxsXX19.a5C6qku1LtyLqM9tfwGloHoiPoT0oKyeMRYS00MSQNw",
2758
+ "grantTypes": [
2759
+ "authorization_code"
2760
+ ]
2761
+ },
2762
+ "_id": "9e58d2bb-8d4b-43c3-a007-bbda60a2f704",
2763
+ "_type": {
2764
+ "_id": "OAuth2Client",
2765
+ "name": "OAuth2 Clients",
2766
+ "collection": true
2767
+ }
2768
+ },
2769
+ {
2770
+ "signEncOAuth2ClientConfig": {
2771
+ "userinfoResponseFormat": "JSON",
2772
+ "mTLSCertificateBoundAccessTokens": false,
2773
+ "publicKeyLocation": "x509",
2774
+ "tokenIntrospectionResponseFormat": "JSON",
2775
+ "userinfoSignedResponseAlg": null,
2776
+ "idTokenEncryptionEnabled": false,
2777
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
2778
+ "requestParameterEncryptedAlg": null,
2779
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
2780
+ "requestParameterSignedAlg": null,
2781
+ "idTokenEncryptionMethod": "A128CBC-HS256",
2782
+ "userinfoEncryptedResponseAlg": null,
2783
+ "idTokenSignedResponseAlg": "RS256",
2784
+ "tokenIntrospectionSignedResponseAlg": "RS256",
2785
+ "userinfoEncryptedResponseEncryptionAlgorithm": null,
2786
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
2787
+ },
2788
+ "coreOpenIDClientConfig": {
2789
+ "jwtTokenLifetime": 0,
2790
+ "defaultMaxAgeEnabled": false,
2791
+ "defaultMaxAge": 1,
2792
+ "defaultAcrValues": [],
2793
+ "backchannel_logout_session_required": false
2794
+ },
2795
+ "coreOAuth2ClientConfig": {
2796
+ "scopes": [
2797
+ "openid",
2798
+ "profile"
2799
+ ],
2800
+ "status": "Active",
2801
+ "accessTokenLifetime": 0,
2802
+ "redirectionUris": [
2803
+ "https://openam-volker-dev.forgeblocks.com"
2804
+ ],
2805
+ "clientName": [
2806
+ "ja-jpan-jp|クライアント名",
2807
+ "en|Vlad1"
2808
+ ],
2809
+ "clientType": "Confidential",
2810
+ "defaultScopes": [],
2811
+ "userpassword": null,
2812
+ "authorizationCodeLifetime": 0,
2813
+ "refreshTokenLifetime": 0
2814
+ },
2815
+ "advancedOAuth2ClientConfig": {
2816
+ "subjectType": "public",
2817
+ "tokenEndpointAuthMethod": "client_secret_basic",
2818
+ "responseTypes": [
2819
+ "code",
2820
+ "id_token code"
2821
+ ],
2822
+ "updateAccessToken": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJjMDIwM2Q0MC0wMWRjLTQzMGEtOTU0Zi01YTcyMjJjOTY2Y2QiLCJjdHMiOiJPQVVUSDJfR1JBTlRfU0VUIiwiYXVkaXRUcmFja2luZ0lkIjoiYjU4ZmZlZDQtZTkxNy00MjJkLTg2NjktNzNkNTIwMjVjYTMyLTIwODU0OCIsInN1Ym5hbWUiOiJjMDIwM2Q0MC0wMWRjLTQzMGEtOTU0Zi01YTcyMjJjOTY2Y2QiLCJpc3MiOiJodHRwczovL29wZW5hbS12b2xrZXItZGV2LmZvcmdlYmxvY2tzLmNvbTo0NDMvYW0vb2F1dGgyL2FscGhhIiwidG9rZW5OYW1lIjoiYWNjZXNzX3Rva2VuIiwidG9rZW5fdHlwZSI6IkJlYXJlciIsImF1dGhHcmFudElkIjoiQVFGVjFFZTNFTmh5V19xX3RLOWNsczEzYnpzLnZRd2czZjlNVHJ6VTVqalJJZWtya2ZHMUNITSIsImF1ZCI6ImMwMjAzZDQwLTAxZGMtNDMwYS05NTRmLTVhNzIyMmM5NjZjZCIsIm5iZiI6MTY0NjcxNTI1MSwiZ3JhbnRfdHlwZSI6ImR5bmFtaWNfY2xpZW50X3JlZ2lzdHJhdGlvbiIsInNjb3BlIjpbXSwiYXV0aF90aW1lIjoxNjQ2NzE1MjUxLCJyZWFsbSI6Ii9hbHBoYSIsImV4cCI6MTY0NjcxODg1MSwiaWF0IjoxNjQ2NzE1MjUxLCJleHBpcmVzX2luIjozNjAwLCJqdGkiOiJBUUZWMUVlM0VOaHlXX3FfdEs5Y2xzMTNienMuaFlkLUh6UUo1bHNEU3ZiWmNuVi1uOXIteXcwIiwibWF5X2FjdCI6eyJjbGllbnRfaWQiOltudWxsXX19.lRTBn5U5Gq6M6iq4aXMSLKDhgFh2g62dn8MULMJI29w",
2823
+ "grantTypes": [
2824
+ "authorization_code"
2825
+ ]
2826
+ },
2827
+ "_id": "c0203d40-01dc-430a-954f-5a7222c966cd",
2828
+ "_type": {
2829
+ "_id": "OAuth2Client",
2830
+ "name": "OAuth2 Clients",
2831
+ "collection": true
2832
+ }
2833
+ },
2834
+ {
2835
+ "coreOAuth2ClientConfig": {
2836
+ "loopbackInterfaceRedirection": false,
2837
+ "defaultScopes": [],
2838
+ "agentgroup": null,
2839
+ "userpassword": null,
2840
+ "refreshTokenLifetime": 604800,
2841
+ "scopes": [],
2842
+ "status": "Active",
2843
+ "accessTokenLifetime": 3600,
2844
+ "redirectionUris": [],
2845
+ "clientName": [],
2846
+ "clientType": "Confidential",
2847
+ "authorizationCodeLifetime": 120
2848
+ },
2849
+ "overrideOAuth2ClientConfig": {
2850
+ "issueRefreshToken": true,
2851
+ "remoteConsentServiceId": null,
2852
+ "tokenEncryptionEnabled": false,
2853
+ "enableRemoteConsent": false,
2854
+ "customLoginUrlTemplate": null,
2855
+ "oidcMayActScript": "[Empty]",
2856
+ "usePolicyEngineForScope": false,
2857
+ "oidcClaimsScript": "36863ffb-40ec-48b9-94b1-9a99f71cc3b5",
2858
+ "overrideableOIDCClaims": [],
2859
+ "accessTokenMayActScript": "[Empty]",
2860
+ "clientsCanSkipConsent": false,
2861
+ "accessTokenModificationScript": "d22f9a0c-426a-4466-b95e-d0f125b0d5fa",
2862
+ "providerOverridesEnabled": false,
2863
+ "issueRefreshTokenOnRefreshedToken": true,
2864
+ "statelessTokensEnabled": false
2865
+ },
2866
+ "advancedOAuth2ClientConfig": {
2867
+ "descriptions": [],
2868
+ "requestUris": [],
2869
+ "logoUri": [],
2870
+ "subjectType": "Public",
2871
+ "clientUri": [],
2872
+ "tokenExchangeAuthLevel": 0,
2873
+ "name": [],
2874
+ "contacts": [],
2875
+ "responseTypes": [
2876
+ "token"
2877
+ ],
2878
+ "updateAccessToken": null,
2879
+ "mixUpMitigation": false,
2880
+ "customProperties": [],
2881
+ "javascriptOrigins": [],
2882
+ "policyUri": [],
2883
+ "softwareVersion": null,
2884
+ "sectorIdentifierUri": null,
2885
+ "tosURI": [],
2886
+ "tokenEndpointAuthMethod": "client_secret_basic",
2887
+ "isConsentImplied": true,
2888
+ "softwareIdentity": null,
2889
+ "grantTypes": [
2890
+ "client_credentials"
2891
+ ]
2892
+ },
2893
+ "signEncOAuth2ClientConfig": {
2894
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
2895
+ "idTokenEncryptionEnabled": false,
2896
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
2897
+ "requestParameterSignedAlg": null,
2898
+ "clientJwtPublicKey": null,
2899
+ "idTokenPublicEncryptionKey": null,
2900
+ "mTLSSubjectDN": null,
2901
+ "mTLSCertificateBoundAccessTokens": false,
2902
+ "userinfoResponseFormat": "JSON",
2903
+ "publicKeyLocation": "jwks_uri",
2904
+ "tokenIntrospectionResponseFormat": "JSON",
2905
+ "jwkStoreCacheMissCacheTime": 60000,
2906
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
2907
+ "userinfoSignedResponseAlg": null,
2908
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
2909
+ "requestParameterEncryptedAlg": null,
2910
+ "mTLSTrustedCert": null,
2911
+ "jwkSet": null,
2912
+ "idTokenEncryptionMethod": "A128CBC-HS256",
2913
+ "jwksCacheTimeout": 3600000,
2914
+ "userinfoEncryptedResponseAlg": null,
2915
+ "idTokenSignedResponseAlg": "RS256",
2916
+ "jwksUri": null,
2917
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
2918
+ "tokenIntrospectionSignedResponseAlg": "RS256",
2919
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
2920
+ },
2921
+ "coreOpenIDClientConfig": {
2922
+ "claims": [],
2923
+ "clientSessionUri": null,
2924
+ "backchannel_logout_uri": null,
2925
+ "defaultAcrValues": [],
2926
+ "jwtTokenLifetime": 3600,
2927
+ "defaultMaxAgeEnabled": false,
2928
+ "defaultMaxAge": 600,
2929
+ "postLogoutRedirectUri": [],
2930
+ "backchannel_logout_session_required": false
2931
+ },
2932
+ "coreUmaClientConfig": {
2933
+ "claimsRedirectionUris": []
2934
+ },
2935
+ "_id": "m2m",
2936
+ "_type": {
2937
+ "_id": "OAuth2Client",
2938
+ "name": "OAuth2 Clients",
2939
+ "collection": true
2940
+ }
2941
+ },
2942
+ {
2943
+ "signEncOAuth2ClientConfig": {
2944
+ "userinfoResponseFormat": "JSON",
2945
+ "mTLSCertificateBoundAccessTokens": false,
2946
+ "publicKeyLocation": "x509",
2947
+ "tokenIntrospectionResponseFormat": "JSON",
2948
+ "userinfoSignedResponseAlg": null,
2949
+ "idTokenEncryptionEnabled": false,
2950
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
2951
+ "requestParameterEncryptedAlg": null,
2952
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
2953
+ "requestParameterSignedAlg": null,
2954
+ "idTokenEncryptionMethod": "A128CBC-HS256",
2955
+ "userinfoEncryptedResponseAlg": null,
2956
+ "idTokenSignedResponseAlg": "RS256",
2957
+ "tokenIntrospectionSignedResponseAlg": "RS256",
2958
+ "userinfoEncryptedResponseEncryptionAlgorithm": null,
2959
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
2960
+ },
2961
+ "coreOpenIDClientConfig": {
2962
+ "jwtTokenLifetime": 0,
2963
+ "defaultMaxAgeEnabled": false,
2964
+ "defaultMaxAge": 1,
2965
+ "defaultAcrValues": [],
2966
+ "backchannel_logout_session_required": false
2967
+ },
2968
+ "coreOAuth2ClientConfig": {
2969
+ "scopes": [
2970
+ "openid",
2971
+ "profile"
2972
+ ],
2973
+ "status": "Active",
2974
+ "accessTokenLifetime": 0,
2975
+ "redirectionUris": [
2976
+ "https://openam-volker-dev.forgeblocks.com"
2977
+ ],
2978
+ "clientName": [
2979
+ "ja-jpan-jp|クライアント名",
2980
+ "en|Vlad1"
2981
+ ],
2982
+ "clientType": "Confidential",
2983
+ "defaultScopes": [],
2984
+ "userpassword": null,
2985
+ "authorizationCodeLifetime": 0,
2986
+ "refreshTokenLifetime": 0
2987
+ },
2988
+ "advancedOAuth2ClientConfig": {
2989
+ "subjectType": "public",
2990
+ "tokenEndpointAuthMethod": "client_secret_basic",
2991
+ "responseTypes": [
2992
+ "code",
2993
+ "id_token code"
2994
+ ],
2995
+ "updateAccessToken": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxYTM2OWVhYS1iMjdjLTQ1NzMtODg3ZC03ZjQ3Y2U5ODI0MmYiLCJjdHMiOiJPQVVUSDJfR1JBTlRfU0VUIiwiYXVkaXRUcmFja2luZ0lkIjoiYjU4ZmZlZDQtZTkxNy00MjJkLTg2NjktNzNkNTIwMjVjYTMyLTE3MzEyMCIsInN1Ym5hbWUiOiIxYTM2OWVhYS1iMjdjLTQ1NzMtODg3ZC03ZjQ3Y2U5ODI0MmYiLCJpc3MiOiJodHRwczovL29wZW5hbS12b2xrZXItZGV2LmZvcmdlYmxvY2tzLmNvbTo0NDMvYW0vb2F1dGgyL2FscGhhIiwidG9rZW5OYW1lIjoiYWNjZXNzX3Rva2VuIiwidG9rZW5fdHlwZSI6IkJlYXJlciIsImF1dGhHcmFudElkIjoiOWxHMzZyMnk0dWp5NWlCcFY5djZqd1lSdHFNLi1fODZqemdPaXgybkRfbzNXTXlZZ2F2WDVycyIsImF1ZCI6IjFhMzY5ZWFhLWIyN2MtNDU3My04ODdkLTdmNDdjZTk4MjQyZiIsIm5iZiI6MTY0NjcxMjMxMCwiZ3JhbnRfdHlwZSI6ImR5bmFtaWNfY2xpZW50X3JlZ2lzdHJhdGlvbiIsInNjb3BlIjpbXSwiYXV0aF90aW1lIjoxNjQ2NzEyMzEwLCJyZWFsbSI6Ii9hbHBoYSIsImV4cCI6MTY0NjcxNTkxMCwiaWF0IjoxNjQ2NzEyMzEwLCJleHBpcmVzX2luIjozNjAwLCJqdGkiOiI5bEczNnIyeTR1ank1aUJwVjl2Nmp3WVJ0cU0udTV6Nk44ZkctTEkyNE5ELW5jYzFKSDdNaUJRIiwibWF5X2FjdCI6eyJjbGllbnRfaWQiOltudWxsXX19.NBBQwXpO08Ns-JGvpwpvxGGxUL4FpzDlto65ghMF3BU",
2996
+ "grantTypes": [
2997
+ "authorization_code"
2998
+ ]
2999
+ },
3000
+ "_id": "1a369eaa-b27c-4573-887d-7f47ce98242f",
3001
+ "_type": {
3002
+ "_id": "OAuth2Client",
3003
+ "name": "OAuth2 Clients",
3004
+ "collection": true
3005
+ }
3006
+ },
3007
+ {
3008
+ "coreOAuth2ClientConfig": {
3009
+ "loopbackInterfaceRedirection": false,
3010
+ "defaultScopes": [],
3011
+ "agentgroup": null,
3012
+ "userpassword": null,
3013
+ "refreshTokenLifetime": 0,
3014
+ "scopes": [
3015
+ "am-introspect-all-tokens",
3016
+ "am-introspect-all-tokens-any-realm"
3017
+ ],
3018
+ "status": "Active",
3019
+ "accessTokenLifetime": 0,
3020
+ "redirectionUris": [],
3021
+ "clientName": [],
3022
+ "clientType": "Confidential",
3023
+ "authorizationCodeLifetime": 0
3024
+ },
3025
+ "advancedOAuth2ClientConfig": {
3026
+ "descriptions": [],
3027
+ "requestUris": [],
3028
+ "logoUri": [],
3029
+ "subjectType": "Public",
3030
+ "clientUri": [],
3031
+ "name": [],
3032
+ "contacts": [],
3033
+ "responseTypes": [
3034
+ "code",
3035
+ "token",
3036
+ "id_token",
3037
+ "code token",
3038
+ "token id_token",
3039
+ "code id_token",
3040
+ "code token id_token",
3041
+ "device_code",
3042
+ "device_code id_token"
3043
+ ],
3044
+ "updateAccessToken": null,
3045
+ "mixUpMitigation": false,
3046
+ "javascriptOrigins": [],
3047
+ "policyUri": [],
3048
+ "sectorIdentifierUri": null,
3049
+ "tokenEndpointAuthMethod": "client_secret_basic",
3050
+ "isConsentImplied": false,
3051
+ "grantTypes": [
3052
+ "authorization_code"
3053
+ ]
3054
+ },
3055
+ "signEncOAuth2ClientConfig": {
3056
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
3057
+ "idTokenEncryptionEnabled": false,
3058
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
3059
+ "requestParameterSignedAlg": null,
3060
+ "clientJwtPublicKey": null,
3061
+ "idTokenPublicEncryptionKey": null,
3062
+ "mTLSSubjectDN": null,
3063
+ "mTLSCertificateBoundAccessTokens": false,
3064
+ "userinfoResponseFormat": "JSON",
3065
+ "publicKeyLocation": "jwks_uri",
3066
+ "tokenIntrospectionResponseFormat": "JSON",
3067
+ "jwkStoreCacheMissCacheTime": 60000,
3068
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
3069
+ "userinfoSignedResponseAlg": null,
3070
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
3071
+ "requestParameterEncryptedAlg": null,
3072
+ "mTLSTrustedCert": null,
3073
+ "jwkSet": null,
3074
+ "idTokenEncryptionMethod": "A128CBC-HS256",
3075
+ "jwksCacheTimeout": 3600000,
3076
+ "userinfoEncryptedResponseAlg": null,
3077
+ "idTokenSignedResponseAlg": "RS256",
3078
+ "jwksUri": "http://am:80/am/oauth2/connect/jwk_uri",
3079
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
3080
+ "tokenIntrospectionSignedResponseAlg": "RS256",
3081
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
3082
+ },
3083
+ "coreOpenIDClientConfig": {
3084
+ "claims": [],
3085
+ "clientSessionUri": null,
3086
+ "defaultAcrValues": [],
3087
+ "jwtTokenLifetime": 0,
3088
+ "defaultMaxAgeEnabled": false,
3089
+ "defaultMaxAge": 600,
3090
+ "postLogoutRedirectUri": []
3091
+ },
3092
+ "overrideOAuth2ClientConfig": {
3093
+ "oidcClaimsScript": "1f389a3d-21cf-417c-a6d3-42ea620071f0",
3094
+ "accessTokenModificationPluginType": "SCRIPTED",
3095
+ "clientsCanSkipConsent": true,
3096
+ "accessTokenModificationScript": "c234ba0b-58a1-4cfd-9567-09edde980745",
3097
+ "oidcClaimsPluginType": "SCRIPTED",
3098
+ "providerOverridesEnabled": true,
3099
+ "statelessTokensEnabled": true
3100
+ },
3101
+ "coreUmaClientConfig": {
3102
+ "claimsRedirectionUris": []
3103
+ },
3104
+ "_id": "openidm-resource-server",
3105
+ "_type": {
3106
+ "_id": "OAuth2Client",
3107
+ "name": "OAuth2 Clients",
3108
+ "collection": true
3109
+ }
3110
+ },
3111
+ {
3112
+ "overrideOAuth2ClientConfig": {
3113
+ "issueRefreshToken": true,
3114
+ "validateScopePluginType": "PROVIDER",
3115
+ "tokenEncryptionEnabled": false,
3116
+ "evaluateScopePluginType": "PROVIDER",
3117
+ "oidcMayActScript": "[Empty]",
3118
+ "oidcClaimsScript": "[Empty]",
3119
+ "scopesPolicySet": "oauth2Scopes",
3120
+ "accessTokenModificationPluginType": "PROVIDER",
3121
+ "authorizeEndpointDataProviderClass": "org.forgerock.oauth2.core.plugins.registry.DefaultEndpointDataProvider",
3122
+ "oidcClaimsPluginType": "PROVIDER",
3123
+ "providerOverridesEnabled": false,
3124
+ "authorizeEndpointDataProviderScript": "[Empty]",
3125
+ "statelessTokensEnabled": false,
3126
+ "authorizeEndpointDataProviderPluginType": "PROVIDER",
3127
+ "remoteConsentServiceId": null,
3128
+ "enableRemoteConsent": false,
3129
+ "validateScopeClass": "org.forgerock.oauth2.core.plugins.registry.DefaultScopeValidator",
3130
+ "usePolicyEngineForScope": false,
3131
+ "evaluateScopeClass": "org.forgerock.oauth2.core.plugins.registry.DefaultScopeEvaluator",
3132
+ "overrideableOIDCClaims": [],
3133
+ "accessTokenMayActScript": "[Empty]",
3134
+ "evaluateScopeScript": "[Empty]",
3135
+ "clientsCanSkipConsent": false,
3136
+ "accessTokenModificationScript": "[Empty]",
3137
+ "issueRefreshTokenOnRefreshedToken": true,
3138
+ "validateScopeScript": "[Empty]"
3139
+ },
3140
+ "advancedOAuth2ClientConfig": {
3141
+ "logoUri": [],
3142
+ "subjectType": "Public",
3143
+ "clientUri": [],
3144
+ "tokenExchangeAuthLevel": 0,
3145
+ "responseTypes": [
3146
+ "code",
3147
+ "token",
3148
+ "id_token"
3149
+ ],
3150
+ "mixUpMitigation": false,
3151
+ "customProperties": [],
3152
+ "javascriptOrigins": [],
3153
+ "policyUri": [],
3154
+ "softwareVersion": null,
3155
+ "sectorIdentifierUri": null,
3156
+ "tosURI": [],
3157
+ "tokenEndpointAuthMethod": "client_secret_basic",
3158
+ "isConsentImplied": true,
3159
+ "refreshTokenGracePeriod": 0,
3160
+ "softwareIdentity": null,
3161
+ "grantTypes": [
3162
+ "authorization_code",
3163
+ "client_credentials",
3164
+ "refresh_token",
3165
+ "implicit",
3166
+ "password"
3167
+ ],
3168
+ "require_pushed_authorization_requests": false,
3169
+ "descriptions": [],
3170
+ "requestUris": [],
3171
+ "name": [],
3172
+ "contacts": [],
3173
+ "updateAccessToken": null
3174
+ },
3175
+ "signEncOAuth2ClientConfig": {
3176
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
3177
+ "idTokenEncryptionEnabled": false,
3178
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
3179
+ "requestParameterSignedAlg": null,
3180
+ "authorizationResponseSigningAlgorithm": "RS256",
3181
+ "clientJwtPublicKey": null,
3182
+ "idTokenPublicEncryptionKey": null,
3183
+ "mTLSSubjectDN": null,
3184
+ "jwkStoreCacheMissCacheTime": 60000,
3185
+ "jwkSet": null,
3186
+ "idTokenEncryptionMethod": "A128CBC-HS256",
3187
+ "jwksUri": null,
3188
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256",
3189
+ "authorizationResponseEncryptionMethod": null,
3190
+ "userinfoResponseFormat": "JSON",
3191
+ "mTLSCertificateBoundAccessTokens": false,
3192
+ "publicKeyLocation": "jwks_uri",
3193
+ "tokenIntrospectionResponseFormat": "JSON",
3194
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
3195
+ "userinfoSignedResponseAlg": null,
3196
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
3197
+ "requestParameterEncryptedAlg": null,
3198
+ "authorizationResponseEncryptionAlgorithm": null,
3199
+ "mTLSTrustedCert": null,
3200
+ "jwksCacheTimeout": 3600000,
3201
+ "userinfoEncryptedResponseAlg": null,
3202
+ "idTokenSignedResponseAlg": "RS256",
3203
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
3204
+ "tokenIntrospectionSignedResponseAlg": "RS256"
3205
+ },
3206
+ "coreOpenIDClientConfig": {
3207
+ "claims": [],
3208
+ "backchannel_logout_uri": null,
3209
+ "defaultAcrValues": [],
3210
+ "jwtTokenLifetime": 3600,
3211
+ "defaultMaxAgeEnabled": false,
3212
+ "clientSessionUri": null,
3213
+ "defaultMaxAge": 600,
3214
+ "postLogoutRedirectUri": [],
3215
+ "backchannel_logout_session_required": false
3216
+ },
3217
+ "coreOAuth2ClientConfig": {
3218
+ "userpassword": null,
3219
+ "status": "Active",
3220
+ "clientName": [],
3221
+ "clientType": "Confidential",
3222
+ "loopbackInterfaceRedirection": false,
3223
+ "defaultScopes": [],
3224
+ "refreshTokenLifetime": 604800,
3225
+ "scopes": [
3226
+ "openid"
3227
+ ],
3228
+ "accessTokenLifetime": 3600,
3229
+ "redirectionUris": [],
3230
+ "authorizationCodeLifetime": 120
3231
+ },
3232
+ "coreUmaClientConfig": {
3233
+ "claimsRedirectionUris": []
3234
+ },
3235
+ "_id": "testClient1",
3236
+ "_type": {
3237
+ "_id": "OAuth2Client",
3238
+ "name": "OAuth2 Clients",
3239
+ "collection": true
3240
+ }
3241
+ },
3242
+ {
3243
+ "coreOAuth2ClientConfig": {
3244
+ "loopbackInterfaceRedirection": false,
3245
+ "defaultScopes": [
3246
+ "fr:idm:*"
3247
+ ],
3248
+ "userpassword": null,
3249
+ "refreshTokenLifetime": 604800,
3250
+ "scopes": [
3251
+ "fr:idm:*",
3252
+ "fr:idc:esv:*",
3253
+ "dynamic_client_registration"
3254
+ ],
3255
+ "status": "Active",
3256
+ "accessTokenLifetime": 3600,
3257
+ "redirectionUris": [],
3258
+ "clientName": [],
3259
+ "clientType": "Confidential",
3260
+ "authorizationCodeLifetime": 120
3261
+ },
3262
+ "overrideOAuth2ClientConfig": {
3263
+ "issueRefreshToken": true,
3264
+ "remoteConsentServiceId": null,
3265
+ "tokenEncryptionEnabled": false,
3266
+ "enableRemoteConsent": false,
3267
+ "oidcMayActScript": "[Empty]",
3268
+ "usePolicyEngineForScope": false,
3269
+ "oidcClaimsScript": "36863ffb-40ec-48b9-94b1-9a99f71cc3b5",
3270
+ "overrideableOIDCClaims": [],
3271
+ "accessTokenMayActScript": "[Empty]",
3272
+ "clientsCanSkipConsent": false,
3273
+ "accessTokenModificationScript": "d22f9a0c-426a-4466-b95e-d0f125b0d5fa",
3274
+ "providerOverridesEnabled": false,
3275
+ "issueRefreshTokenOnRefreshedToken": true,
3276
+ "statelessTokensEnabled": false
3277
+ },
3278
+ "advancedOAuth2ClientConfig": {
3279
+ "descriptions": [],
3280
+ "requestUris": [],
3281
+ "logoUri": [],
3282
+ "subjectType": "Public",
3283
+ "clientUri": [],
3284
+ "tokenExchangeAuthLevel": 0,
3285
+ "name": [],
3286
+ "contacts": [],
3287
+ "responseTypes": [
3288
+ "token"
3289
+ ],
3290
+ "updateAccessToken": null,
3291
+ "mixUpMitigation": false,
3292
+ "customProperties": [],
3293
+ "javascriptOrigins": [],
3294
+ "policyUri": [],
3295
+ "softwareVersion": null,
3296
+ "sectorIdentifierUri": null,
3297
+ "tosURI": [],
3298
+ "tokenEndpointAuthMethod": "client_secret_basic",
3299
+ "isConsentImplied": true,
3300
+ "softwareIdentity": null,
3301
+ "grantTypes": [
3302
+ "client_credentials"
3303
+ ]
3304
+ },
3305
+ "signEncOAuth2ClientConfig": {
3306
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
3307
+ "idTokenEncryptionEnabled": false,
3308
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
3309
+ "requestParameterSignedAlg": null,
3310
+ "clientJwtPublicKey": null,
3311
+ "idTokenPublicEncryptionKey": null,
3312
+ "mTLSSubjectDN": null,
3313
+ "mTLSCertificateBoundAccessTokens": false,
3314
+ "userinfoResponseFormat": "JSON",
3315
+ "publicKeyLocation": "jwks_uri",
3316
+ "tokenIntrospectionResponseFormat": "JSON",
3317
+ "jwkStoreCacheMissCacheTime": 60000,
3318
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
3319
+ "userinfoSignedResponseAlg": null,
3320
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
3321
+ "requestParameterEncryptedAlg": null,
3322
+ "mTLSTrustedCert": null,
3323
+ "jwkSet": null,
3324
+ "idTokenEncryptionMethod": "A128CBC-HS256",
3325
+ "jwksCacheTimeout": 3600000,
3326
+ "userinfoEncryptedResponseAlg": null,
3327
+ "idTokenSignedResponseAlg": "RS256",
3328
+ "jwksUri": null,
3329
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
3330
+ "tokenIntrospectionSignedResponseAlg": "RS256",
3331
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
3332
+ },
3333
+ "coreOpenIDClientConfig": {
3334
+ "claims": [],
3335
+ "clientSessionUri": null,
3336
+ "backchannel_logout_uri": null,
3337
+ "defaultAcrValues": [],
3338
+ "jwtTokenLifetime": 3600,
3339
+ "defaultMaxAgeEnabled": false,
3340
+ "defaultMaxAge": 600,
3341
+ "postLogoutRedirectUri": [],
3342
+ "backchannel_logout_session_required": false
3343
+ },
3344
+ "coreUmaClientConfig": {
3345
+ "claimsRedirectionUris": []
3346
+ },
3347
+ "_id": "ce3cd8cb-686d-4267-aef0-eac374b85511",
3348
+ "_type": {
3349
+ "_id": "OAuth2Client",
3350
+ "name": "OAuth2 Clients",
3351
+ "collection": true
3352
+ }
3353
+ },
3354
+ {
3355
+ "coreOAuth2ClientConfig": {
3356
+ "loopbackInterfaceRedirection": false,
3357
+ "defaultScopes": [
3358
+ "openid"
3359
+ ],
3360
+ "userpassword": null,
3361
+ "refreshTokenLifetime": 0,
3362
+ "scopes": [
3363
+ "openid"
3364
+ ],
3365
+ "status": "Active",
3366
+ "accessTokenLifetime": 0,
3367
+ "redirectionUris": [],
3368
+ "clientName": [
3369
+ "test2"
3370
+ ],
3371
+ "clientType": "Confidential",
3372
+ "authorizationCodeLifetime": 0
3373
+ },
3374
+ "overrideOAuth2ClientConfig": {
3375
+ "issueRefreshToken": true,
3376
+ "remoteConsentServiceId": null,
3377
+ "tokenEncryptionEnabled": false,
3378
+ "enableRemoteConsent": false,
3379
+ "oidcMayActScript": "[Empty]",
3380
+ "usePolicyEngineForScope": false,
3381
+ "oidcClaimsScript": "36863ffb-40ec-48b9-94b1-9a99f71cc3b5",
3382
+ "overrideableOIDCClaims": [],
3383
+ "accessTokenMayActScript": "[Empty]",
3384
+ "clientsCanSkipConsent": false,
3385
+ "accessTokenModificationScript": "d22f9a0c-426a-4466-b95e-d0f125b0d5fa",
3386
+ "providerOverridesEnabled": false,
3387
+ "issueRefreshTokenOnRefreshedToken": true,
3388
+ "statelessTokensEnabled": false
3389
+ },
3390
+ "advancedOAuth2ClientConfig": {
3391
+ "descriptions": [
3392
+ "Modified by Frodo on 4/16/2022, 8:41:59 PM"
3393
+ ],
3394
+ "requestUris": [],
3395
+ "logoUri": [],
3396
+ "subjectType": "public",
3397
+ "clientUri": [],
3398
+ "tokenExchangeAuthLevel": 0,
3399
+ "name": [],
3400
+ "contacts": [],
3401
+ "responseTypes": [
3402
+ "code",
3403
+ "token",
3404
+ "id_token"
3405
+ ],
3406
+ "updateAccessToken": null,
3407
+ "mixUpMitigation": false,
3408
+ "customProperties": [],
3409
+ "javascriptOrigins": [],
3410
+ "policyUri": [],
3411
+ "softwareVersion": null,
3412
+ "sectorIdentifierUri": null,
3413
+ "tosURI": [],
3414
+ "tokenEndpointAuthMethod": "client_secret_basic",
3415
+ "isConsentImplied": false,
3416
+ "softwareIdentity": null,
3417
+ "grantTypes": [
3418
+ "authorization_code",
3419
+ "refresh_token"
3420
+ ]
3421
+ },
3422
+ "signEncOAuth2ClientConfig": {
3423
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
3424
+ "idTokenEncryptionEnabled": false,
3425
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
3426
+ "requestParameterSignedAlg": null,
3427
+ "clientJwtPublicKey": null,
3428
+ "idTokenPublicEncryptionKey": null,
3429
+ "mTLSSubjectDN": null,
3430
+ "mTLSCertificateBoundAccessTokens": false,
3431
+ "userinfoResponseFormat": "JSON",
3432
+ "publicKeyLocation": "jwks_uri",
3433
+ "tokenIntrospectionResponseFormat": "JSON",
3434
+ "jwkStoreCacheMissCacheTime": 60000,
3435
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
3436
+ "userinfoSignedResponseAlg": null,
3437
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
3438
+ "requestParameterEncryptedAlg": null,
3439
+ "mTLSTrustedCert": null,
3440
+ "jwkSet": null,
3441
+ "idTokenEncryptionMethod": "A128CBC-HS256",
3442
+ "jwksCacheTimeout": 3600000,
3443
+ "userinfoEncryptedResponseAlg": null,
3444
+ "idTokenSignedResponseAlg": "RS256",
3445
+ "jwksUri": null,
3446
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
3447
+ "tokenIntrospectionSignedResponseAlg": "RS256",
3448
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
3449
+ },
3450
+ "coreOpenIDClientConfig": {
3451
+ "claims": [],
3452
+ "clientSessionUri": null,
3453
+ "backchannel_logout_uri": null,
3454
+ "defaultAcrValues": [],
3455
+ "jwtTokenLifetime": 0,
3456
+ "defaultMaxAgeEnabled": false,
3457
+ "defaultMaxAge": 600,
3458
+ "postLogoutRedirectUri": [],
3459
+ "backchannel_logout_session_required": false
3460
+ },
3461
+ "coreUmaClientConfig": {
3462
+ "claimsRedirectionUris": []
3463
+ },
3464
+ "_id": "test2",
3465
+ "_type": {
3466
+ "_id": "OAuth2Client",
3467
+ "name": "OAuth2 Clients",
3468
+ "collection": true
3469
+ }
3470
+ },
3471
+ {
3472
+ "coreOAuth2ClientConfig": {
3473
+ "loopbackInterfaceRedirection": false,
3474
+ "defaultScopes": [],
3475
+ "agentgroup": null,
3476
+ "userpassword": null,
3477
+ "refreshTokenLifetime": 0,
3478
+ "scopes": [
3479
+ "fr:idm:*"
3480
+ ],
3481
+ "status": "Active",
3482
+ "accessTokenLifetime": 315576000,
3483
+ "redirectionUris": [
3484
+ "https://openam-sandeep-dev.forgeblocks.com/platform/appAuthHelperRedirect.html"
3485
+ ],
3486
+ "clientName": [],
3487
+ "clientType": "Confidential",
3488
+ "authorizationCodeLifetime": 0
3489
+ },
3490
+ "overrideOAuth2ClientConfig": {
3491
+ "issueRefreshToken": true,
3492
+ "remoteConsentServiceId": null,
3493
+ "tokenEncryptionEnabled": false,
3494
+ "enableRemoteConsent": false,
3495
+ "customLoginUrlTemplate": null,
3496
+ "oidcMayActScript": "[Empty]",
3497
+ "usePolicyEngineForScope": false,
3498
+ "oidcClaimsScript": "36863ffb-40ec-48b9-94b1-9a99f71cc3b5",
3499
+ "overrideableOIDCClaims": [],
3500
+ "accessTokenMayActScript": "[Empty]",
3501
+ "clientsCanSkipConsent": false,
3502
+ "accessTokenModificationScript": "d22f9a0c-426a-4466-b95e-d0f125b0d5fa",
3503
+ "providerOverridesEnabled": false,
3504
+ "issueRefreshTokenOnRefreshedToken": true,
3505
+ "statelessTokensEnabled": false
3506
+ },
3507
+ "advancedOAuth2ClientConfig": {
3508
+ "descriptions": [],
3509
+ "requestUris": [],
3510
+ "logoUri": [],
3511
+ "subjectType": "public",
3512
+ "clientUri": [],
3513
+ "tokenExchangeAuthLevel": 0,
3514
+ "name": [],
3515
+ "contacts": [],
3516
+ "responseTypes": [
3517
+ "token"
3518
+ ],
3519
+ "updateAccessToken": null,
3520
+ "mixUpMitigation": false,
3521
+ "customProperties": [],
3522
+ "javascriptOrigins": [
3523
+ "https://openam-sandeep-dev.forgeblocks.com",
3524
+ "https://openam-sandeep-dev.forgeblocks.com:443"
3525
+ ],
3526
+ "policyUri": [],
3527
+ "softwareVersion": null,
3528
+ "sectorIdentifierUri": null,
3529
+ "tosURI": [],
3530
+ "tokenEndpointAuthMethod": "client_secret_post",
3531
+ "isConsentImplied": false,
3532
+ "softwareIdentity": null,
3533
+ "grantTypes": [
3534
+ "authorization_code",
3535
+ "refresh_token",
3536
+ "password"
3537
+ ]
3538
+ },
3539
+ "signEncOAuth2ClientConfig": {
3540
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
3541
+ "idTokenEncryptionEnabled": false,
3542
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
3543
+ "requestParameterSignedAlg": null,
3544
+ "clientJwtPublicKey": null,
3545
+ "idTokenPublicEncryptionKey": null,
3546
+ "mTLSSubjectDN": null,
3547
+ "mTLSCertificateBoundAccessTokens": false,
3548
+ "userinfoResponseFormat": "JSON",
3549
+ "publicKeyLocation": "jwks_uri",
3550
+ "tokenIntrospectionResponseFormat": "JSON",
3551
+ "jwkStoreCacheMissCacheTime": 60000,
3552
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
3553
+ "userinfoSignedResponseAlg": null,
3554
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
3555
+ "requestParameterEncryptedAlg": null,
3556
+ "mTLSTrustedCert": null,
3557
+ "jwkSet": null,
3558
+ "idTokenEncryptionMethod": "A128CBC-HS256",
3559
+ "jwksCacheTimeout": 3600000,
3560
+ "userinfoEncryptedResponseAlg": null,
3561
+ "idTokenSignedResponseAlg": "RS256",
3562
+ "jwksUri": null,
3563
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
3564
+ "tokenIntrospectionSignedResponseAlg": "RS256",
3565
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
3566
+ },
3567
+ "coreOpenIDClientConfig": {
3568
+ "claims": [],
3569
+ "clientSessionUri": null,
3570
+ "backchannel_logout_uri": null,
3571
+ "defaultAcrValues": [],
3572
+ "jwtTokenLifetime": 0,
3573
+ "defaultMaxAgeEnabled": false,
3574
+ "defaultMaxAge": 600,
3575
+ "postLogoutRedirectUri": [],
3576
+ "backchannel_logout_session_required": false
3577
+ },
3578
+ "coreUmaClientConfig": {
3579
+ "claimsRedirectionUris": []
3580
+ },
3581
+ "_id": "_journey",
3582
+ "_type": {
3583
+ "_id": "OAuth2Client",
3584
+ "name": "OAuth2 Clients",
3585
+ "collection": true
3586
+ }
3587
+ },
3588
+ {
3589
+ "signEncOAuth2ClientConfig": {
3590
+ "userinfoResponseFormat": "JSON",
3591
+ "mTLSCertificateBoundAccessTokens": false,
3592
+ "publicKeyLocation": "x509",
3593
+ "tokenIntrospectionResponseFormat": "JSON",
3594
+ "userinfoSignedResponseAlg": null,
3595
+ "idTokenEncryptionEnabled": false,
3596
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
3597
+ "requestParameterEncryptedAlg": null,
3598
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
3599
+ "requestParameterSignedAlg": null,
3600
+ "idTokenEncryptionMethod": "A128CBC-HS256",
3601
+ "userinfoEncryptedResponseAlg": null,
3602
+ "idTokenSignedResponseAlg": "RS256",
3603
+ "tokenIntrospectionSignedResponseAlg": "RS256",
3604
+ "userinfoEncryptedResponseEncryptionAlgorithm": null,
3605
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256"
3606
+ },
3607
+ "coreOpenIDClientConfig": {
3608
+ "jwtTokenLifetime": 0,
3609
+ "defaultMaxAgeEnabled": false,
3610
+ "defaultMaxAge": 1,
3611
+ "defaultAcrValues": [],
3612
+ "backchannel_logout_session_required": false
3613
+ },
3614
+ "coreOAuth2ClientConfig": {
3615
+ "scopes": [
3616
+ "openid",
3617
+ "profile"
3618
+ ],
3619
+ "status": "Active",
3620
+ "accessTokenLifetime": 0,
3621
+ "redirectionUris": [
3622
+ "https://openam-volker-dev.forgeblocks.com"
3623
+ ],
3624
+ "clientName": [
3625
+ "ja-jpan-jp|クライアント名",
3626
+ "en|Vlad1"
3627
+ ],
3628
+ "clientType": "Confidential",
3629
+ "defaultScopes": [],
3630
+ "userpassword": null,
3631
+ "authorizationCodeLifetime": 0,
3632
+ "refreshTokenLifetime": 0
3633
+ },
3634
+ "advancedOAuth2ClientConfig": {
3635
+ "subjectType": "public",
3636
+ "tokenEndpointAuthMethod": "client_secret_basic",
3637
+ "responseTypes": [
3638
+ "code",
3639
+ "id_token code"
3640
+ ],
3641
+ "updateAccessToken": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI0YmM3MjA4Ny00ZmY4LTRhNjAtOGI4YS1mZjhjMTRlZTQzMDAiLCJjdHMiOiJPQVVUSDJfR1JBTlRfU0VUIiwiYXVkaXRUcmFja2luZ0lkIjoiYjU4ZmZlZDQtZTkxNy00MjJkLTg2NjktNzNkNTIwMjVjYTMyLTE3NTYzOSIsInN1Ym5hbWUiOiI0YmM3MjA4Ny00ZmY4LTRhNjAtOGI4YS1mZjhjMTRlZTQzMDAiLCJpc3MiOiJodHRwczovL29wZW5hbS12b2xrZXItZGV2LmZvcmdlYmxvY2tzLmNvbTo0NDMvYW0vb2F1dGgyL2FscGhhIiwidG9rZW5OYW1lIjoiYWNjZXNzX3Rva2VuIiwidG9rZW5fdHlwZSI6IkJlYXJlciIsImF1dGhHcmFudElkIjoicmowbFp3QTR2b0trMXhOek41NEtOX1RnSjR3LkRxMk5USnJjTEtpOUZDd3VVN1pqbEM0S1gtTSIsImF1ZCI6IjRiYzcyMDg3LTRmZjgtNGE2MC04YjhhLWZmOGMxNGVlNDMwMCIsIm5iZiI6MTY0NjcxMjUxNywiZ3JhbnRfdHlwZSI6ImR5bmFtaWNfY2xpZW50X3JlZ2lzdHJhdGlvbiIsInNjb3BlIjpbXSwiYXV0aF90aW1lIjoxNjQ2NzEyNTE3LCJyZWFsbSI6Ii9hbHBoYSIsImV4cCI6MTY0NjcxNjExNywiaWF0IjoxNjQ2NzEyNTE3LCJleHBpcmVzX2luIjozNjAwLCJqdGkiOiJyajBsWndBNHZvS2sxeE56TjU0S05fVGdKNHcuMU5PeEVjcFFVTE9wXzJtWXh5UE1GbUJKZVk4IiwibWF5X2FjdCI6eyJjbGllbnRfaWQiOltudWxsXX19.TbuxtXCGRU3qryNcRQtZZ7vC7ayI8l6CeHqlApMK_cM",
3642
+ "grantTypes": [
3643
+ "authorization_code"
3644
+ ]
3645
+ },
3646
+ "_id": "4bc72087-4ff8-4a60-8b8a-ff8c14ee4300",
3647
+ "_type": {
3648
+ "_id": "OAuth2Client",
3649
+ "name": "OAuth2 Clients",
3650
+ "collection": true
3651
+ }
3652
+ },
3653
+ {
3654
+ "overrideOAuth2ClientConfig": {
3655
+ "issueRefreshToken": true,
3656
+ "validateScopePluginType": "PROVIDER",
3657
+ "tokenEncryptionEnabled": false,
3658
+ "evaluateScopePluginType": "PROVIDER",
3659
+ "oidcMayActScript": "[Empty]",
3660
+ "oidcClaimsScript": "[Empty]",
3661
+ "scopesPolicySet": "oauth2Scopes",
3662
+ "accessTokenModificationPluginType": "PROVIDER",
3663
+ "authorizeEndpointDataProviderClass": "org.forgerock.oauth2.core.plugins.registry.DefaultEndpointDataProvider",
3664
+ "oidcClaimsPluginType": "PROVIDER",
3665
+ "providerOverridesEnabled": false,
3666
+ "authorizeEndpointDataProviderScript": "[Empty]",
3667
+ "statelessTokensEnabled": false,
3668
+ "authorizeEndpointDataProviderPluginType": "PROVIDER",
3669
+ "oidcClaimsClass": null,
3670
+ "remoteConsentServiceId": null,
3671
+ "enableRemoteConsent": false,
3672
+ "validateScopeClass": "org.forgerock.oauth2.core.plugins.registry.DefaultScopeValidator",
3673
+ "customLoginUrlTemplate": null,
3674
+ "accessTokenModifierClass": null,
3675
+ "usePolicyEngineForScope": false,
3676
+ "evaluateScopeClass": "org.forgerock.oauth2.core.plugins.registry.DefaultScopeEvaluator",
3677
+ "overrideableOIDCClaims": [],
3678
+ "accessTokenMayActScript": "[Empty]",
3679
+ "evaluateScopeScript": "[Empty]",
3680
+ "clientsCanSkipConsent": false,
3681
+ "accessTokenModificationScript": "[Empty]",
3682
+ "issueRefreshTokenOnRefreshedToken": true,
3683
+ "validateScopeScript": "[Empty]"
3684
+ },
3685
+ "advancedOAuth2ClientConfig": {
3686
+ "logoUri": [],
3687
+ "subjectType": "Public",
3688
+ "clientUri": [],
3689
+ "tokenExchangeAuthLevel": 0,
3690
+ "responseTypes": [
3691
+ "code",
3692
+ "token",
3693
+ "id_token"
3694
+ ],
3695
+ "mixUpMitigation": false,
3696
+ "customProperties": [],
3697
+ "javascriptOrigins": [],
3698
+ "policyUri": [],
3699
+ "softwareVersion": null,
3700
+ "sectorIdentifierUri": null,
3701
+ "tosURI": [],
3702
+ "tokenEndpointAuthMethod": "client_secret_basic",
3703
+ "isConsentImplied": true,
3704
+ "refreshTokenGracePeriod": 0,
3705
+ "softwareIdentity": null,
3706
+ "grantTypes": [
3707
+ "authorization_code",
3708
+ "refresh_token"
3709
+ ],
3710
+ "require_pushed_authorization_requests": false,
3711
+ "descriptions": [],
3712
+ "requestUris": [],
3713
+ "name": [],
3714
+ "contacts": [],
3715
+ "updateAccessToken": null
3716
+ },
3717
+ "signEncOAuth2ClientConfig": {
3718
+ "tokenEndpointAuthSigningAlgorithm": "RS256",
3719
+ "idTokenEncryptionEnabled": false,
3720
+ "tokenIntrospectionEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
3721
+ "requestParameterSignedAlg": null,
3722
+ "authorizationResponseSigningAlgorithm": "RS256",
3723
+ "clientJwtPublicKey": null,
3724
+ "idTokenPublicEncryptionKey": null,
3725
+ "mTLSSubjectDN": null,
3726
+ "jwkStoreCacheMissCacheTime": 60000,
3727
+ "jwkSet": null,
3728
+ "idTokenEncryptionMethod": "A128CBC-HS256",
3729
+ "jwksUri": null,
3730
+ "tokenIntrospectionEncryptedResponseAlg": "RSA-OAEP-256",
3731
+ "authorizationResponseEncryptionMethod": null,
3732
+ "userinfoResponseFormat": "JSON",
3733
+ "mTLSCertificateBoundAccessTokens": false,
3734
+ "publicKeyLocation": "jwks_uri",
3735
+ "tokenIntrospectionResponseFormat": "JSON",
3736
+ "requestParameterEncryptedEncryptionAlgorithm": "A128CBC-HS256",
3737
+ "userinfoSignedResponseAlg": null,
3738
+ "idTokenEncryptionAlgorithm": "RSA-OAEP-256",
3739
+ "requestParameterEncryptedAlg": null,
3740
+ "authorizationResponseEncryptionAlgorithm": null,
3741
+ "mTLSTrustedCert": null,
3742
+ "jwksCacheTimeout": 3600000,
3743
+ "userinfoEncryptedResponseAlg": null,
3744
+ "idTokenSignedResponseAlg": "RS256",
3745
+ "userinfoEncryptedResponseEncryptionAlgorithm": "A128CBC-HS256",
3746
+ "tokenIntrospectionSignedResponseAlg": "RS256"
3747
+ },
3748
+ "coreOpenIDClientConfig": {
3749
+ "claims": [],
3750
+ "backchannel_logout_uri": null,
3751
+ "defaultAcrValues": [],
3752
+ "jwtTokenLifetime": 3600,
3753
+ "defaultMaxAgeEnabled": false,
3754
+ "clientSessionUri": null,
3755
+ "defaultMaxAge": 600,
3756
+ "postLogoutRedirectUri": [],
3757
+ "backchannel_logout_session_required": false
3758
+ },
3759
+ "coreOAuth2ClientConfig": {
3760
+ "status": "Active",
3761
+ "clientName": [],
3762
+ "clientType": "Public",
3763
+ "loopbackInterfaceRedirection": false,
3764
+ "defaultScopes": [],
3765
+ "agentgroup": null,
3766
+ "refreshTokenLifetime": 604800,
3767
+ "scopes": [
3768
+ "openid"
3769
+ ],
3770
+ "accessTokenLifetime": 3600,
3771
+ "redirectionUris": [],
3772
+ "authorizationCodeLifetime": 120
3773
+ },
3774
+ "coreUmaClientConfig": {
3775
+ "claimsRedirectionUris": []
3776
+ },
3777
+ "_id": "dfsd",
3778
+ "_type": {
3779
+ "_id": "OAuth2Client",
3780
+ "name": "OAuth2 Clients",
3781
+ "collection": true
3782
+ }
3783
+ },
3784
+ {
3785
+ "igTokenIntrospection": "Realm_Subs",
3786
+ "status": "Active",
3787
+ "igCdssoRedirectUrls": [],
3788
+ "userpassword": null,
3789
+ "_id": "ig_chico",
3790
+ "_type": {
3791
+ "_id": "IdentityGatewayAgent",
3792
+ "name": "Identity Gateway Agents",
3793
+ "collection": true
3794
+ }
3795
+ },
3796
+ {
3797
+ "igTokenIntrospection": "Realm_Subs",
3798
+ "status": "Active",
3799
+ "igCdssoRedirectUrls": [
3800
+ "https://ig.mytestrun.com/expanse/cdsso/redirect",
3801
+ "https://ig.mytestrun.com/ig-sample-app/cdsso/redirect",
3802
+ "https://ig.mytestrun.com/forgerock/cdsso/redirect",
3803
+ "https://ig.scheuber.io/ig/studio/cdsso/redirect",
3804
+ "https://ig.mytestrun.com/prometheus/cdsso/redirect",
3805
+ "https://ig.mytestrun.com/grafana/cdsso/redirect",
3806
+ "https://ig.mytestrun.com/bi/cdsso/redirect",
3807
+ "https://ig.mytestrun.com/ig/studio/cdsso/redirect",
3808
+ "https://ig.mytestrun.com/ig/cdsso/redirect"
3809
+ ],
3810
+ "agentgroup": null,
3811
+ "userpassword": null,
3812
+ "_id": "ig_mytestrun_com",
3813
+ "_type": {
3814
+ "_id": "IdentityGatewayAgent",
3815
+ "name": "Identity Gateway Agents",
3816
+ "collection": true
3817
+ }
3818
+ },
3819
+ {
3820
+ "igTokenIntrospection": "Realm_Subs",
3821
+ "status": "Active",
3822
+ "igCdssoRedirectUrls": [],
3823
+ "agentgroup": null,
3824
+ "userpassword": null,
3825
+ "_id": "ajays_client",
3826
+ "_type": {
3827
+ "_id": "IdentityGatewayAgent",
3828
+ "name": "Identity Gateway Agents",
3829
+ "collection": true
3830
+ }
3831
+ },
3832
+ {
3833
+ "igTokenIntrospection": "Realm_Subs",
3834
+ "status": "Active",
3835
+ "igCdssoRedirectUrls": [],
3836
+ "userpassword": null,
3837
+ "_id": "api_client",
3838
+ "_type": {
3839
+ "_id": "IdentityGatewayAgent",
3840
+ "name": "Identity Gateway Agents",
3841
+ "collection": true
3842
+ }
3843
+ },
3844
+ {
3845
+ "allowedSubjects": [],
3846
+ "jwksCacheTimeout": 3600000,
3847
+ "jwkSet": null,
3848
+ "consentedScopesClaim": "scope",
3849
+ "issuer": "https://login.microsoftonline.com:443/711ffa9c-5972-4713-ace3-688c9732614a/v2.0",
3850
+ "jwkStoreCacheMissCacheTime": 60000,
3851
+ "jwksUri": "https://login.microsoftonline.com/organizations/discovery/v2.0/keys",
3852
+ "resourceOwnerIdentityClaim": "sub",
3853
+ "agentgroup": null,
3854
+ "_id": "azure",
3855
+ "_type": {
3856
+ "_id": "TrustedJwtIssuer",
3857
+ "name": "OAuth2 Trusted JWT Issuer",
3858
+ "collection": true
3859
+ }
3860
+ }
3861
+ ]
3862
+ }