solid-server 5.8.8-22f4cfec → 5.8.8-5dfb1ed6
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.
- package/common/js/auth-buttons.mjs +20 -20
- package/common/js/index-buttons.mjs +30 -30
- package/common/js/solid.mjs +11 -11
- package/config/defaults.mjs +1 -1
- package/coverage/tmp/coverage-2271-1767314979851-0.json +1 -0
- package/coverage/tmp/{coverage-2261-1766832635310-0.json → coverage-2272-1767314957768-0.json} +1 -1
- package/eslint.config.mjs +102 -0
- package/index.mjs +8 -8
- package/lib/acl-checker.mjs +0 -1
- package/lib/handlers/copy.mjs +0 -2
- package/lib/handlers/cors-proxy.mjs +0 -2
- package/lib/handlers/get.mjs +2 -2
- package/lib/handlers/index.mjs +0 -2
- package/lib/handlers/options.mjs +0 -2
- package/lib/ldp.mjs +0 -2
- package/lib/models/oidc-manager.mjs +0 -1
- package/lib/resource-mapper.mjs +1 -3
- package/lib/utils.mjs +0 -2
- package/lib/webid/tls/index.mjs +0 -1
- package/package.json +11 -9
- package/solid-server-5.8.8.tgz +0 -0
- package/test/integration/account-manager-test.mjs +0 -1
- package/test/integration/account-template-test.mjs +0 -1
- package/test/integration/authentication-oidc-test.mjs +1 -1
- package/test/integration/capability-discovery-test.mjs +0 -1
- package/test/integration/oidc-manager-test.mjs +95 -2
- package/test/integration/quota-test.mjs +0 -1
- package/test/integration/www-account-creation-oidc-test.mjs +0 -1
- package/test/resources/accounts/db/oidc/op/clients/{_key_5319f8e8e4ea3214c2e92b252520d355.json → _key_87bb910680f661cb1ba01f3b84fd0ac3.json} +1 -1
- package/test/resources/accounts/db/oidc/rp/clients/_key_https%3A%2F%2Flocalhost%3A3457.json +1 -1
- package/test/resources/accounts-scenario/alice/db/oidc/op/clients/{_key_9c0fd8442675a1afbe5115b9ae300c65.json → _key_fa4df5e2bbab2e46f5b419848548ccbf.json} +1 -1
- package/test/resources/accounts-scenario/alice/db/oidc/rp/clients/_key_https%3A%2F%2Flocalhost%3A7000.json +1 -1
- package/test/resources/accounts-scenario/bob/db/oidc/op/clients/{_key_f15f340b6dc71b68d20eca0d7e87a972.json → _key_f5b232666f5d2d55ab842de231e70afe.json} +1 -1
- package/test/resources/accounts-scenario/bob/db/oidc/rp/clients/_key_https%3A%2F%2Flocalhost%3A7001.json +1 -1
- package/test/resources/accounts-scenario/charlie/db/oidc/op/clients/{_key_7c634dfe325475cc8750e19c72acf6d9.json → _key_24d821e99dd91e7487559dedb7e3d62f.json} +1 -1
- package/test/resources/accounts-scenario/charlie/db/oidc/rp/clients/_key_https%3A%2F%2Flocalhost%3A5002.json +1 -1
- package/test/resources/accounts-strict-origin-off/alice/db/oidc/op/clients/{_key_3f1cecaefd21253767f6e047bd9b572f.json → _key_33febb715e55143fe6ac53e1d129feba.json} +1 -1
- package/test/resources/accounts-strict-origin-off/alice/db/oidc/rp/clients/_key_https%3A%2F%2Flocalhost%3A7010.json +1 -1
- package/test/resources/accounts-strict-origin-off/bob/db/oidc/op/clients/{_key_a17f603b5907c97a5fac61a2eea7ecb2.json → _key_ffdf720bc26d721ccc448845aac665de.json} +1 -1
- package/test/resources/accounts-strict-origin-off/bob/db/oidc/rp/clients/_key_https%3A%2F%2Flocalhost%3A7011.json +1 -1
- package/test/unit/account-template-test.mjs +0 -1
- package/test/unit/add-cert-request-test.mjs +0 -1
- package/test/unit/email-service-test.mjs +0 -1
- package/test/unit/email-welcome-test.mjs +0 -1
- package/test/unit/esm-imports.test.mjs +0 -1
- package/test/unit/oidc-manager-test.mjs +0 -1
- package/test/unit/solid-host-test.mjs +0 -1
- package/test/unit/user-account-test.mjs +0 -1
- package/test/validate-turtle.mjs +0 -1
- package/coverage/tmp/coverage-2260-1766832656715-0.json +0 -1
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import js from '@eslint/js'
|
|
2
|
+
import globals from 'globals'
|
|
3
|
+
|
|
4
|
+
export default [
|
|
5
|
+
js.configs.recommended,
|
|
6
|
+
{
|
|
7
|
+
languageOptions: {
|
|
8
|
+
ecmaVersion: 2022,
|
|
9
|
+
sourceType: 'module',
|
|
10
|
+
globals: {
|
|
11
|
+
...globals.node,
|
|
12
|
+
...globals.mocha,
|
|
13
|
+
fetch: 'readonly',
|
|
14
|
+
AbortController: 'readonly',
|
|
15
|
+
Headers: 'readonly',
|
|
16
|
+
Request: 'readonly',
|
|
17
|
+
Response: 'readonly',
|
|
18
|
+
URL: 'readonly',
|
|
19
|
+
URLSearchParams: 'readonly'
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
rules: {
|
|
23
|
+
// StandardJS-like rules
|
|
24
|
+
'no-unused-vars': ['error', {
|
|
25
|
+
args: 'none',
|
|
26
|
+
caughtErrors: 'none',
|
|
27
|
+
ignoreRestSiblings: true,
|
|
28
|
+
vars: 'all'
|
|
29
|
+
}],
|
|
30
|
+
'no-empty': ['error', { allowEmptyCatch: true }],
|
|
31
|
+
'no-var': 'error',
|
|
32
|
+
'prefer-const': ['error', { destructuring: 'all' }],
|
|
33
|
+
'quote-props': ['error', 'as-needed'],
|
|
34
|
+
semi: ['error', 'never'],
|
|
35
|
+
quotes: ['error', 'single', { avoidEscape: true, allowTemplateLiterals: true }],
|
|
36
|
+
'comma-dangle': ['error', 'never'],
|
|
37
|
+
'space-before-function-paren': ['error', 'always'],
|
|
38
|
+
indent: ['error', 2, {
|
|
39
|
+
SwitchCase: 1,
|
|
40
|
+
VariableDeclarator: 1,
|
|
41
|
+
outerIIFEBody: 1,
|
|
42
|
+
MemberExpression: 1,
|
|
43
|
+
FunctionDeclaration: { parameters: 1, body: 1 },
|
|
44
|
+
FunctionExpression: { parameters: 1, body: 1 },
|
|
45
|
+
CallExpression: { arguments: 1 },
|
|
46
|
+
ArrayExpression: 1,
|
|
47
|
+
ObjectExpression: 1,
|
|
48
|
+
ImportDeclaration: 1,
|
|
49
|
+
flatTernaryExpressions: false,
|
|
50
|
+
ignoreComments: false,
|
|
51
|
+
ignoredNodes: ['TemplateLiteral *', 'JSXElement', 'JSXElement > *', 'JSXAttribute', 'JSXIdentifier', 'JSXNamespacedName', 'JSXMemberExpression', 'JSXSpreadAttribute', 'JSXExpressionContainer', 'JSXOpeningElement', 'JSXClosingElement', 'JSXFragment', 'JSXOpeningFragment', 'JSXClosingFragment', 'JSXText', 'JSXEmptyExpression', 'JSXSpreadChild'],
|
|
52
|
+
offsetTernaryExpressions: true
|
|
53
|
+
}],
|
|
54
|
+
'key-spacing': ['error', { beforeColon: false, afterColon: true }],
|
|
55
|
+
'keyword-spacing': ['error', { before: true, after: true }],
|
|
56
|
+
'object-curly-spacing': ['error', 'always'],
|
|
57
|
+
'array-bracket-spacing': ['error', 'never'],
|
|
58
|
+
'space-in-parens': ['error', 'never'],
|
|
59
|
+
'space-before-blocks': ['error', 'always'],
|
|
60
|
+
'space-infix-ops': 'error',
|
|
61
|
+
'eol-last': 'error',
|
|
62
|
+
'no-multiple-empty-lines': ['error', { max: 1, maxBOF: 0, maxEOF: 0 }],
|
|
63
|
+
'no-trailing-spaces': 'error',
|
|
64
|
+
'comma-spacing': ['error', { before: false, after: true }],
|
|
65
|
+
'no-multi-spaces': 'error',
|
|
66
|
+
'no-mixed-operators': ['error', {
|
|
67
|
+
groups: [
|
|
68
|
+
['==', '!=', '===', '!==', '>', '>=', '<', '<='],
|
|
69
|
+
['&&', '||'],
|
|
70
|
+
['in', 'instanceof']
|
|
71
|
+
],
|
|
72
|
+
allowSamePrecedence: true
|
|
73
|
+
}],
|
|
74
|
+
'operator-linebreak': ['error', 'after', { overrides: { '?': 'before', ':': 'before', '|>': 'before' } }],
|
|
75
|
+
'brace-style': ['error', '1tbs', { allowSingleLine: true }],
|
|
76
|
+
'arrow-spacing': ['error', { before: true, after: true }],
|
|
77
|
+
'padded-blocks': ['error', { blocks: 'never', switches: 'never', classes: 'never' }],
|
|
78
|
+
'no-use-before-define': ['error', { functions: false, classes: false, variables: false }]
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
// Browser files (client-side code)
|
|
83
|
+
files: ['common/**/*.mjs'],
|
|
84
|
+
languageOptions: {
|
|
85
|
+
globals: {
|
|
86
|
+
...globals.browser,
|
|
87
|
+
solid: 'readonly',
|
|
88
|
+
UI: 'readonly',
|
|
89
|
+
owaspPasswordStrengthTest: 'readonly'
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
ignores: [
|
|
95
|
+
'node_modules/**',
|
|
96
|
+
'coverage/**',
|
|
97
|
+
'.db/**',
|
|
98
|
+
'data/**',
|
|
99
|
+
'resources/**'
|
|
100
|
+
]
|
|
101
|
+
}
|
|
102
|
+
]
|
package/index.mjs
CHANGED
|
@@ -8,15 +8,15 @@ import startCli from './bin/lib/cli.mjs'
|
|
|
8
8
|
let exported
|
|
9
9
|
const canAttach = (ldnode && (typeof ldnode === 'object' || typeof ldnode === 'function'))
|
|
10
10
|
if (canAttach) {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
try {
|
|
12
|
+
if (!ldnode.createServer) ldnode.createServer = createServer
|
|
13
|
+
if (!ldnode.startCli) ldnode.startCli = startCli
|
|
14
|
+
exported = ldnode
|
|
15
|
+
} catch (e) {
|
|
16
|
+
exported = { default: ldnode, createServer, startCli }
|
|
17
|
+
}
|
|
18
18
|
} else {
|
|
19
|
-
|
|
19
|
+
exported = { default: ldnode, createServer, startCli }
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
export default exported
|
package/lib/acl-checker.mjs
CHANGED
package/lib/handlers/copy.mjs
CHANGED
package/lib/handlers/get.mjs
CHANGED
|
@@ -240,7 +240,7 @@ function hasReadPermissions (file, req, res, callback) {
|
|
|
240
240
|
if (!ldp.webid) {
|
|
241
241
|
// FIXME: what is the rule that causes
|
|
242
242
|
// "Unexpected literal in error position of callback" in `npm run standard`?
|
|
243
|
-
|
|
243
|
+
|
|
244
244
|
return callback(true)
|
|
245
245
|
}
|
|
246
246
|
|
|
@@ -249,6 +249,6 @@ function hasReadPermissions (file, req, res, callback) {
|
|
|
249
249
|
res.locals.path = relativePath
|
|
250
250
|
// FIXME: what is the rule that causes
|
|
251
251
|
// "Unexpected literal in error position of callback" in `npm run standard`?
|
|
252
|
-
|
|
252
|
+
|
|
253
253
|
allow('Read')(req, res, err => callback(!err))
|
|
254
254
|
}
|
package/lib/handlers/index.mjs
CHANGED
package/lib/handlers/options.mjs
CHANGED
package/lib/ldp.mjs
CHANGED
package/lib/resource-mapper.mjs
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/* eslint-disable node/no-deprecated-api, no-mixed-operators */
|
|
2
|
-
|
|
3
1
|
import fs from 'fs'
|
|
4
2
|
import URL from 'url'
|
|
5
3
|
import { promisify } from 'util'
|
|
@@ -196,7 +194,7 @@ class ResourceMapper {
|
|
|
196
194
|
_getContentTypeFromExtension (path) {
|
|
197
195
|
const defaultContentType = (path === '' || path.endsWith('/')) ? this._defaultContainerContentType : this._defaultContentType
|
|
198
196
|
const extension = /\.([^/.]+)$/.exec(path)
|
|
199
|
-
return extension && this._types[extension[1].toLowerCase()] || defaultContentType
|
|
197
|
+
return (extension && this._types[extension[1].toLowerCase()]) || defaultContentType
|
|
200
198
|
}
|
|
201
199
|
|
|
202
200
|
// Appends an extension for the specific content type, if needed
|
package/lib/utils.mjs
CHANGED
package/lib/webid/tls/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "solid-server",
|
|
3
3
|
"description": "Solid server on top of the file-system",
|
|
4
|
-
"version": "5.8.8-
|
|
4
|
+
"version": "5.8.8-5dfb1ed6",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Tim Berners-Lee",
|
|
7
7
|
"email": "timbl@w3.org"
|
|
@@ -62,9 +62,10 @@
|
|
|
62
62
|
"@fastify/busboy": "^1.2.1",
|
|
63
63
|
"@fastify/pre-commit": "^2.2.1",
|
|
64
64
|
"@solid/acl-check": "^0.4.5",
|
|
65
|
-
"@solid/oidc-auth-manager": "^0.25.
|
|
66
|
-
"@solid/oidc-op": "^0.12.
|
|
65
|
+
"@solid/oidc-auth-manager": "^0.25.1",
|
|
66
|
+
"@solid/oidc-op": "^0.12.1",
|
|
67
67
|
"@solid/oidc-rp": "^0.12.0",
|
|
68
|
+
"@solid/solid-multi-rp-client": "^0.7.0",
|
|
68
69
|
"async-lock": "^1.4.1",
|
|
69
70
|
"body-parser": "^1.20.4",
|
|
70
71
|
"bootstrap": "^3.4.1",
|
|
@@ -75,6 +76,7 @@
|
|
|
75
76
|
"commander": "^8.3.0",
|
|
76
77
|
"cors": "^2.8.5",
|
|
77
78
|
"debug": "^4.4.3",
|
|
79
|
+
"eslint": "^9.39.2",
|
|
78
80
|
"express": "^4.22.1",
|
|
79
81
|
"express-accept-events": "^0.3.0",
|
|
80
82
|
"express-handlebars": "^5.3.5",
|
|
@@ -120,13 +122,14 @@
|
|
|
120
122
|
},
|
|
121
123
|
"devDependencies": {
|
|
122
124
|
"@cxres/structured-headers": "^2.0.0-nesting.0",
|
|
125
|
+
"@eslint/js": "^9.39.2",
|
|
123
126
|
"@solid/solid-auth-oidc": "^0.6.0",
|
|
124
127
|
"c8": "^10.1.3",
|
|
125
128
|
"chai": "^4.5.0",
|
|
126
129
|
"chai-as-promised": "7.1.2",
|
|
127
130
|
"cross-env": "7.0.3",
|
|
128
131
|
"dirty-chai": "2.0.1",
|
|
129
|
-
"
|
|
132
|
+
"globals": "^17.0.0",
|
|
130
133
|
"localstorage-memory": "1.0.3",
|
|
131
134
|
"mocha": "^10.8.2",
|
|
132
135
|
"nock": "^13.5.6",
|
|
@@ -136,13 +139,12 @@
|
|
|
136
139
|
"sinon": "12.0.1",
|
|
137
140
|
"sinon-chai": "3.7.0",
|
|
138
141
|
"snyk": "^1.1301.2",
|
|
139
|
-
"standard": "16.0.4",
|
|
140
142
|
"supertest": "^6.3.4",
|
|
141
143
|
"turtle-validator": "1.1.1",
|
|
142
144
|
"whatwg-url": "11.0.0"
|
|
143
145
|
},
|
|
144
146
|
"pre-commit": [
|
|
145
|
-
"
|
|
147
|
+
"lint"
|
|
146
148
|
],
|
|
147
149
|
"main": "index.mjs",
|
|
148
150
|
"exports": {
|
|
@@ -154,8 +156,8 @@
|
|
|
154
156
|
"scripts": {
|
|
155
157
|
"build": "echo nothing to build",
|
|
156
158
|
"solid": "node ./bin/solid",
|
|
157
|
-
"
|
|
158
|
-
"
|
|
159
|
+
"lint": "eslint \"**/*.mjs\"",
|
|
160
|
+
"lint-fix": "eslint --fix \"**/*.mjs\"",
|
|
159
161
|
"validate": "node ./test/validate-turtle.mjs",
|
|
160
162
|
"c8": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 c8 --reporter=text-summary mocha --recursive test/unit/ test/integration/",
|
|
161
163
|
"mocha": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 mocha --recursive test/unit/ test/integration/",
|
|
@@ -169,7 +171,7 @@
|
|
|
169
171
|
"mocha-ldp": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 mocha --recursive test/integration/ldp-test.mjs",
|
|
170
172
|
"ignore:prepublishOnly": "npm test",
|
|
171
173
|
"ignore:postpublish": "git push --follow-tags",
|
|
172
|
-
"test": "npm run
|
|
174
|
+
"test": "npm run lint && npm run validate && npm run c8",
|
|
173
175
|
"test-unit": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 mocha test/unit/**/*.mjs --timeout 10000",
|
|
174
176
|
"test-integration": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 mocha test/integration/**/*.mjs --timeout 15000",
|
|
175
177
|
"test-performance": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 mocha test/performance/**/*.mjs --timeout 10000",
|
package/solid-server-5.8.8.tgz
CHANGED
|
Binary file
|
|
@@ -26,7 +26,7 @@ const __dirname = path.dirname(__filename)
|
|
|
26
26
|
|
|
27
27
|
// FIXME #1502
|
|
28
28
|
describe('Authentication API (OIDC)', () => {
|
|
29
|
-
let alice, bob
|
|
29
|
+
let alice, bob
|
|
30
30
|
|
|
31
31
|
const aliceServerUri = 'https://localhost:7000'
|
|
32
32
|
const aliceWebId = 'https://localhost:7000/profile/card#me'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/* eslint-disable no-unused-expressions */
|
|
2
1
|
import { fileURLToPath } from 'url'
|
|
3
2
|
import path from 'path'
|
|
3
|
+
import { URL } from 'url'
|
|
4
4
|
import chai from 'chai'
|
|
5
5
|
import fs from 'fs-extra'
|
|
6
6
|
import { fromServerConfig } from '../../lib/models/oidc-manager.mjs'
|
|
@@ -38,5 +38,98 @@ describe('OidcManager', () => {
|
|
|
38
38
|
expect(oidc.users.backend.path.endsWith('db/oidc/users'))
|
|
39
39
|
expect(oidc.users.saltRounds).to.equal(saltRounds)
|
|
40
40
|
})
|
|
41
|
+
|
|
42
|
+
it('should set the provider issuer which is used for iss claim in tokens', () => {
|
|
43
|
+
const providerUri = 'https://pivot-test.solidproject.org:8443'
|
|
44
|
+
const host = SolidHost.from({ serverUri: providerUri })
|
|
45
|
+
|
|
46
|
+
const saltRounds = 5
|
|
47
|
+
const argv = {
|
|
48
|
+
host,
|
|
49
|
+
dbPath,
|
|
50
|
+
saltRounds
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
const oidc = fromServerConfig(argv)
|
|
54
|
+
|
|
55
|
+
// Verify the issuer is set correctly for RFC 9207 compliance
|
|
56
|
+
// The iss claim in tokens should match this issuer value
|
|
57
|
+
expect(oidc.provider.issuer).to.exist
|
|
58
|
+
expect(oidc.provider.issuer).to.not.be.null
|
|
59
|
+
expect(oidc.provider.issuer).to.equal(providerUri)
|
|
60
|
+
console.log('Provider issuer (used for iss claim):', oidc.provider.issuer)
|
|
61
|
+
})
|
|
62
|
+
})
|
|
63
|
+
|
|
64
|
+
describe('RFC 9207 - Authorization redirect with iss parameter', () => {
|
|
65
|
+
it('should include iss parameter when redirecting after authorization', async () => {
|
|
66
|
+
const providerUri = 'https://localhost:8443'
|
|
67
|
+
const host = SolidHost.from({ providerUri })
|
|
68
|
+
|
|
69
|
+
const argv = {
|
|
70
|
+
host,
|
|
71
|
+
dbPath,
|
|
72
|
+
saltRounds: 5
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
const oidc = fromServerConfig(argv)
|
|
76
|
+
|
|
77
|
+
// Dynamically import BaseRequest from oidc-op
|
|
78
|
+
const { default: BaseRequest } = await import('@solid/oidc-op/src/handlers/BaseRequest.js')
|
|
79
|
+
|
|
80
|
+
// Create a mock request/response to test the redirect behavior
|
|
81
|
+
const mockReq = {
|
|
82
|
+
method: 'GET',
|
|
83
|
+
query: {
|
|
84
|
+
response_type: 'code',
|
|
85
|
+
redirect_uri: 'https://app.example.com/callback',
|
|
86
|
+
client_id: 'https://app.example.com',
|
|
87
|
+
state: 'test-state'
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
const mockRes = {
|
|
92
|
+
redirectCalled: false,
|
|
93
|
+
redirectUrl: '',
|
|
94
|
+
redirect (url) {
|
|
95
|
+
this.redirectCalled = true
|
|
96
|
+
this.redirectUrl = url
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
const request = new BaseRequest(mockReq, mockRes, oidc.provider)
|
|
101
|
+
request.params = mockReq.query
|
|
102
|
+
|
|
103
|
+
// Simulate a successful authorization by calling redirect with auth data
|
|
104
|
+
try {
|
|
105
|
+
request.redirect({ code: 'test-auth-code' })
|
|
106
|
+
} catch (err) {
|
|
107
|
+
// The redirect throws a HandledError, which is expected behavior
|
|
108
|
+
// We just need to check that the redirect was called with the right URL
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
expect(mockRes.redirectCalled).to.be.true
|
|
112
|
+
expect(mockRes.redirectUrl).to.exist
|
|
113
|
+
|
|
114
|
+
// Parse the redirect URL to check for iss parameter
|
|
115
|
+
const redirectUrl = new URL(mockRes.redirectUrl)
|
|
116
|
+
|
|
117
|
+
// The iss parameter can be in either the query string or hash fragment
|
|
118
|
+
// depending on the response_mode (query or fragment)
|
|
119
|
+
let issParam = redirectUrl.searchParams.get('iss')
|
|
120
|
+
if (!issParam && redirectUrl.hash) {
|
|
121
|
+
// Check in the hash fragment
|
|
122
|
+
const hashParams = new URLSearchParams(redirectUrl.hash.substring(1))
|
|
123
|
+
issParam = hashParams.get('iss')
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
console.log('Redirect URL:', mockRes.redirectUrl)
|
|
127
|
+
console.log('RFC 9207 - iss parameter in redirect:', issParam)
|
|
128
|
+
|
|
129
|
+
// RFC 9207: The iss parameter MUST be present and match the provider issuer
|
|
130
|
+
expect(issParam, 'RFC 9207: iss parameter must be present in authorization response').to.exist
|
|
131
|
+
expect(issParam).to.not.be.null
|
|
132
|
+
expect(issParam).to.equal(providerUri)
|
|
133
|
+
})
|
|
41
134
|
})
|
|
42
|
-
})
|
|
135
|
+
})
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"redirect_uris":["https://localhost:3457/api/oidc/rp/https%3A%2F%2Flocalhost%3A3457"],"client_id":"
|
|
1
|
+
{"redirect_uris":["https://localhost:3457/api/oidc/rp/https%3A%2F%2Flocalhost%3A3457"],"client_id":"87bb910680f661cb1ba01f3b84fd0ac3","client_secret":"f288d9427e176300edd8bfc7aff987ac","response_types":["code","id_token token","code id_token token"],"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"application_type":"web","client_name":"Solid OIDC RP for https://localhost:3457","id_token_signed_response_alg":"RS256","token_endpoint_auth_method":"client_secret_basic","default_max_age":86400,"post_logout_redirect_uris":["https://localhost:3457/goodbye"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"provider":{"url":"https://localhost:3457","configuration":{"issuer":"https://localhost:3457","jwks_uri":"https://localhost:3457/jwks","scopes_supported":["openid","offline_access"],"response_types_supported":["code","code token","code id_token","id_token","id_token token","code id_token token","none"],"token_types_supported":["legacyPop","dpop"],"response_modes_supported":["query","fragment"],"grant_types_supported":["authorization_code","implicit","refresh_token","client_credentials"],"subject_types_supported":["public"],"id_token_signing_alg_values_supported":["RS256","RS384","RS512","none"],"token_endpoint_auth_methods_supported":["client_secret_basic"],"token_endpoint_auth_signing_alg_values_supported":["RS256"],"display_values_supported":[],"claim_types_supported":["normal"],"claims_supported":[],"claims_parameter_supported":false,"request_parameter_supported":true,"request_uri_parameter_supported":false,"require_request_uri_registration":false,"check_session_iframe":"https://localhost:3457/session","end_session_endpoint":"https://localhost:3457/logout","authorization_endpoint":"https://localhost:3457/authorize","token_endpoint":"https://localhost:3457/token","userinfo_endpoint":"https://localhost:3457/userinfo","registration_endpoint":"https://localhost:3457/register"},"jwks":{"keys":[{"kid":"lNZOB-DPE1k","kty":"RSA","alg":"RS256","n":"uvih8HfZj7Wu5Y8knLHxRY6v7oHL2jXWD-B6hXCreYhwaG9EEUt6Rp94p8-JBug3ywo8C_9dNg0RtQLEttcIC_vhqqlJI3pZxpGKXuD9h7XK-PppFVvgnfIGADG0Z-WzbcGDxlefStohR31Hjw5U3ioG3VtXGAYbqlOHM1l2UgDMJwBD5qwFmPP8gp5E2WQKCsuLvxDuOrkAbSDjw2zaI3RRmbLzdj4QkGej8GXhBptgM9RwcKmnoXu0sUdlootmcdiEg74yQ9M6EshNMhiv4k_W0rl7RqVOEL2PsAdmdbF_iWL8a90rGYOEILBrlU6bBR2mTvjV_Hvq-ifFy1YAmQ","e":"AQAB","key_ops":["verify"],"ext":true},{"kid":"Y38YKDtydoE","kty":"RSA","alg":"RS384","n":"tfgZKLjc8UMIblfAlVibJI_2uAxDNprn2VVLebS0sp6d1mtCXQkMYLlJ6e-7kavl8we391Ovnq5bRgpsFRq_LtRX9MpVlfioAUHwWPEG-R6vrQjgo4uynVhI3UEPHyNmZA5J4u34HNVTfAgmquomwwOmOv29ZNRxuYP1kVtscz1JeFPwg6LA7BxWrLc9ev4FQR6tjJKdo2kdLjAXR92odbCzJZ_jdYT3vIVCexMHxhoKnqCImkhfgKbGXcPHXWcelmuA2tzBaLut-Jjo0nJVQjRNDqy0Gyac0TptwFIxaiyHeTqugolUmEaJSfBSLszIRdlOTIGPJ7zdg5dJFK_Lxw","e":"AQAB","key_ops":["verify"],"ext":true},{"kid":"WyMVv6BJ5Dk","kty":"RSA","alg":"RS512","n":"5JDlpbm2TjSW1wpdUZc5NHOqVVrNH_GumoODK_mk-MqImaIRpdR9b1ZJrK6FrW7HIF2bXvebD7olmp9a1goqe-ILbL_ORmhzlhRtyhjWQ-UOZqK5yOXqXXGQXgmok6TN-s55A-h_g12A7Yk5Y5S8EVa9EA4Axwqvm-Q_AkH0yS1qJo6BXYXb1fx205ucx-Ccot2LEBfxv8M7NOFTa-_G-sNchiKQMRoLhbZtLbSK2R1jkqGciEiRSLeXNG4nDu7Wd91-vhBixA1McxnzW96mW8lQwNXXo4gNH7SjONtYLlPQhZVEbmsQmXrOQN8a5RDkybFOIsbucItizSE9V_D7WQ","e":"AQAB","key_ops":["verify"],"ext":true},{"kid":"UykSj_HLgFA","kty":"RSA","alg":"RS256","n":"u79eQlGJN2XFNR-uEmPVtrB_ENRqaS81o6m63tZ5-PwhGHCwJ7rfVnnnvf6Ij_p91Z9pNpWBIVyZcw6UmQIoIBH-3BfxdaqhBxX9bf_N78TKj8_HU5IYjGijale4gog3kj9W2tJJO7R9iA43msjwLRD7pbAHp1iKFJgVTSXJlyLRbC82Dj4ivsEgJjPGvZt16OsGP5myIQwXEGzSPcEI0R9daZE5iM6xFZosaJ8B77eU-Aj3ciwxUBPi5BSZi2P1ZsF4QgSj3N7ZLbVKNW4FFr84IamA2YI0D7PyyNAE2PUZT8n0jHWRJKunuZuy5mgBY8H41KdBI6gNJqY90nHeJw","e":"AQAB","key_ops":["verify"],"ext":true},{"kid":"BJDNTt8RpPE","kty":"RSA","alg":"RS384","n":"nXTd5AoT220nBkW6Zeax8caUI7_Tt0y4v9TEW8TOrzCVvhLBiKpQPjILUTfkGHzxPtysEzDQFSYdHWvg_fvGYItjJBunBMsKCNcb2_CDr2HXD6C0s62bAgct8bBSoaT1MLQ_3MaFKXSF3ZuB87X2B8CVUJ386HP2GY1kl54BuMdFELNZYhy9S_D0KHnQls52Vvb99X9WaYOyxvfr03PG-9EycnkWas5tn1pPFzT0DtJtBJ4IBtXQxTr98jpn_MCz1gRnMgzzkfSOcrMkkMXxePqxNINVKFXtRy7DaJiFOcCMbuK2RJUkSfY2uKcx0aKbp5Xhvix1W8N7c0Y90i6_6w","e":"AQAB","key_ops":["verify"],"ext":true},{"kid":"z8iijSOOIs4","kty":"RSA","alg":"RS512","n":"rPCHP9XeTGOLf1Ezxeq_bdGdvYQZa993YcSVudT0EN6drTWqjykhUVEkT4MGAvLvax38kLARbPUTgMUV9UckDDWn6lRq4q6IZ5pytNOieQKZHzjEmQGzlbnEn1F2m1i5SAfBL-qsnt5q2RXMAiIUXk9q1ChJEHJxOZxnRIoQMc7yTsjjSdtIZKePFiYFn0nsl3A234ByyIBRjzZeoYEtTQKjDR7fP9LO78oZAgpwoGqmfI4IltqQYkFoqrN8I8l1yiJGyuvZRgDXUZ2fxGOQx2WD4xvlFL2TOCfN1UaPE9R4JdbRLLAOf5u1Sqnh4XTjDBhBbVodsmmbtvk4wFo-GQ","e":"AQAB","key_ops":["verify"],"ext":true},{"kid":"zD76wa11A2Y","kty":"RSA","alg":"RS256","n":"nMaSioq1An1J3tbkmc-zRrR8lkbP-WUVRuYhDxQvV-OcBw1R6cdyCcoeFJ1zuUT7ne6BlU6GMPRHuRKaH0KuOaiktUYtXm06T_HvtKFgCQSAKjMUj_ZHfTAJP8ahUsIc0D995XKp7nIGRF7Iy7I24QQFPRh7PmGlREZ52GJgYQgbm020-sWani0MqHoUFBlWxZW9NEqY1c3brN_qWnzjRKly6Kkk3sW1XHPcRLvoHnHQ6TKXJ8pfl-bNjTfK6zq9fDCZ_TY3qQZy66yT_2XPO6X0GHTdJsZlCj7Jg0qrilTHUkJra1bppTSAtVSQnSmYt_IV8zOYiVdJ3kw2khPcKw","e":"AQAB","key_ops":["verify"],"ext":true}]}},"defaults":{},"registration":{"redirect_uris":["https://localhost:3457/api/oidc/rp/https%3A%2F%2Flocalhost%3A3457"],"client_id":"
|
|
1
|
+
{"provider":{"url":"https://localhost:3457","configuration":{"issuer":"https://localhost:3457","jwks_uri":"https://localhost:3457/jwks","scopes_supported":["openid","offline_access"],"response_types_supported":["code","code token","code id_token","id_token","id_token token","code id_token token","none"],"token_types_supported":["legacyPop","dpop"],"response_modes_supported":["query","fragment"],"grant_types_supported":["authorization_code","implicit","refresh_token","client_credentials"],"subject_types_supported":["public"],"id_token_signing_alg_values_supported":["RS256","RS384","RS512","none"],"token_endpoint_auth_methods_supported":["client_secret_basic"],"token_endpoint_auth_signing_alg_values_supported":["RS256"],"display_values_supported":[],"claim_types_supported":["normal"],"claims_supported":[],"claims_parameter_supported":false,"request_parameter_supported":true,"request_uri_parameter_supported":false,"require_request_uri_registration":false,"check_session_iframe":"https://localhost:3457/session","end_session_endpoint":"https://localhost:3457/logout","authorization_endpoint":"https://localhost:3457/authorize","token_endpoint":"https://localhost:3457/token","userinfo_endpoint":"https://localhost:3457/userinfo","registration_endpoint":"https://localhost:3457/register"},"jwks":{"keys":[{"kid":"lNZOB-DPE1k","kty":"RSA","alg":"RS256","n":"uvih8HfZj7Wu5Y8knLHxRY6v7oHL2jXWD-B6hXCreYhwaG9EEUt6Rp94p8-JBug3ywo8C_9dNg0RtQLEttcIC_vhqqlJI3pZxpGKXuD9h7XK-PppFVvgnfIGADG0Z-WzbcGDxlefStohR31Hjw5U3ioG3VtXGAYbqlOHM1l2UgDMJwBD5qwFmPP8gp5E2WQKCsuLvxDuOrkAbSDjw2zaI3RRmbLzdj4QkGej8GXhBptgM9RwcKmnoXu0sUdlootmcdiEg74yQ9M6EshNMhiv4k_W0rl7RqVOEL2PsAdmdbF_iWL8a90rGYOEILBrlU6bBR2mTvjV_Hvq-ifFy1YAmQ","e":"AQAB","key_ops":["verify"],"ext":true},{"kid":"Y38YKDtydoE","kty":"RSA","alg":"RS384","n":"tfgZKLjc8UMIblfAlVibJI_2uAxDNprn2VVLebS0sp6d1mtCXQkMYLlJ6e-7kavl8we391Ovnq5bRgpsFRq_LtRX9MpVlfioAUHwWPEG-R6vrQjgo4uynVhI3UEPHyNmZA5J4u34HNVTfAgmquomwwOmOv29ZNRxuYP1kVtscz1JeFPwg6LA7BxWrLc9ev4FQR6tjJKdo2kdLjAXR92odbCzJZ_jdYT3vIVCexMHxhoKnqCImkhfgKbGXcPHXWcelmuA2tzBaLut-Jjo0nJVQjRNDqy0Gyac0TptwFIxaiyHeTqugolUmEaJSfBSLszIRdlOTIGPJ7zdg5dJFK_Lxw","e":"AQAB","key_ops":["verify"],"ext":true},{"kid":"WyMVv6BJ5Dk","kty":"RSA","alg":"RS512","n":"5JDlpbm2TjSW1wpdUZc5NHOqVVrNH_GumoODK_mk-MqImaIRpdR9b1ZJrK6FrW7HIF2bXvebD7olmp9a1goqe-ILbL_ORmhzlhRtyhjWQ-UOZqK5yOXqXXGQXgmok6TN-s55A-h_g12A7Yk5Y5S8EVa9EA4Axwqvm-Q_AkH0yS1qJo6BXYXb1fx205ucx-Ccot2LEBfxv8M7NOFTa-_G-sNchiKQMRoLhbZtLbSK2R1jkqGciEiRSLeXNG4nDu7Wd91-vhBixA1McxnzW96mW8lQwNXXo4gNH7SjONtYLlPQhZVEbmsQmXrOQN8a5RDkybFOIsbucItizSE9V_D7WQ","e":"AQAB","key_ops":["verify"],"ext":true},{"kid":"UykSj_HLgFA","kty":"RSA","alg":"RS256","n":"u79eQlGJN2XFNR-uEmPVtrB_ENRqaS81o6m63tZ5-PwhGHCwJ7rfVnnnvf6Ij_p91Z9pNpWBIVyZcw6UmQIoIBH-3BfxdaqhBxX9bf_N78TKj8_HU5IYjGijale4gog3kj9W2tJJO7R9iA43msjwLRD7pbAHp1iKFJgVTSXJlyLRbC82Dj4ivsEgJjPGvZt16OsGP5myIQwXEGzSPcEI0R9daZE5iM6xFZosaJ8B77eU-Aj3ciwxUBPi5BSZi2P1ZsF4QgSj3N7ZLbVKNW4FFr84IamA2YI0D7PyyNAE2PUZT8n0jHWRJKunuZuy5mgBY8H41KdBI6gNJqY90nHeJw","e":"AQAB","key_ops":["verify"],"ext":true},{"kid":"BJDNTt8RpPE","kty":"RSA","alg":"RS384","n":"nXTd5AoT220nBkW6Zeax8caUI7_Tt0y4v9TEW8TOrzCVvhLBiKpQPjILUTfkGHzxPtysEzDQFSYdHWvg_fvGYItjJBunBMsKCNcb2_CDr2HXD6C0s62bAgct8bBSoaT1MLQ_3MaFKXSF3ZuB87X2B8CVUJ386HP2GY1kl54BuMdFELNZYhy9S_D0KHnQls52Vvb99X9WaYOyxvfr03PG-9EycnkWas5tn1pPFzT0DtJtBJ4IBtXQxTr98jpn_MCz1gRnMgzzkfSOcrMkkMXxePqxNINVKFXtRy7DaJiFOcCMbuK2RJUkSfY2uKcx0aKbp5Xhvix1W8N7c0Y90i6_6w","e":"AQAB","key_ops":["verify"],"ext":true},{"kid":"z8iijSOOIs4","kty":"RSA","alg":"RS512","n":"rPCHP9XeTGOLf1Ezxeq_bdGdvYQZa993YcSVudT0EN6drTWqjykhUVEkT4MGAvLvax38kLARbPUTgMUV9UckDDWn6lRq4q6IZ5pytNOieQKZHzjEmQGzlbnEn1F2m1i5SAfBL-qsnt5q2RXMAiIUXk9q1ChJEHJxOZxnRIoQMc7yTsjjSdtIZKePFiYFn0nsl3A234ByyIBRjzZeoYEtTQKjDR7fP9LO78oZAgpwoGqmfI4IltqQYkFoqrN8I8l1yiJGyuvZRgDXUZ2fxGOQx2WD4xvlFL2TOCfN1UaPE9R4JdbRLLAOf5u1Sqnh4XTjDBhBbVodsmmbtvk4wFo-GQ","e":"AQAB","key_ops":["verify"],"ext":true},{"kid":"zD76wa11A2Y","kty":"RSA","alg":"RS256","n":"nMaSioq1An1J3tbkmc-zRrR8lkbP-WUVRuYhDxQvV-OcBw1R6cdyCcoeFJ1zuUT7ne6BlU6GMPRHuRKaH0KuOaiktUYtXm06T_HvtKFgCQSAKjMUj_ZHfTAJP8ahUsIc0D995XKp7nIGRF7Iy7I24QQFPRh7PmGlREZ52GJgYQgbm020-sWani0MqHoUFBlWxZW9NEqY1c3brN_qWnzjRKly6Kkk3sW1XHPcRLvoHnHQ6TKXJ8pfl-bNjTfK6zq9fDCZ_TY3qQZy66yT_2XPO6X0GHTdJsZlCj7Jg0qrilTHUkJra1bppTSAtVSQnSmYt_IV8zOYiVdJ3kw2khPcKw","e":"AQAB","key_ops":["verify"],"ext":true}]}},"defaults":{},"registration":{"redirect_uris":["https://localhost:3457/api/oidc/rp/https%3A%2F%2Flocalhost%3A3457"],"client_id":"87bb910680f661cb1ba01f3b84fd0ac3","client_secret":"f288d9427e176300edd8bfc7aff987ac","response_types":["code","id_token token","code id_token token"],"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"application_type":"web","client_name":"Solid OIDC RP for https://localhost:3457","id_token_signed_response_alg":"RS256","token_endpoint_auth_method":"client_secret_basic","default_max_age":86400,"post_logout_redirect_uris":["https://localhost:3457/goodbye"],"registration_access_token":"eyJhbGciOiJSUzI1NiJ9.eyJpc3MiOiJodHRwczovL2xvY2FsaG9zdDozNDU3IiwiYXVkIjoiODdiYjkxMDY4MGY2NjFjYjFiYTAxZjNiODRmZDBhYzMiLCJzdWIiOiI4N2JiOTEwNjgwZjY2MWNiMWJhMDFmM2I4NGZkMGFjMyJ9.cVFwRMoMXJJOG36Nm2yfCnRVDGQOAj7Ze6Xj87EFTcoSygCquPnabov5EZHUFKsgbqxyyvXs7hN2Fk5FrwtJFhGkZd7k4fXujDmkakMUweMkzuLQt3OUrTbxKK5mP6enxJAG7yru6rkQcxGEOAbDcfr7_4WUCEg4E2adK75HfQc0SEp73ybcwHJFxW0J31ot8Rid6V6U2EbO6P0JFCQPQk10GV-XbBYtOr4nrfyquPwIxwdQhhZKaVhovlrq-D0Mu49Yp7_ZxVZrL3VaUz41STyAVu35nVqhjTuOU5NlPupa301mc8akvWXAxfKEKrJaUicoN37mOv2lwIx9GvaDKg","registration_client_uri":"https://localhost:3457/register/87bb910680f661cb1ba01f3b84fd0ac3","client_id_issued_at":1767314962,"client_secret_expires_at":0},"store":{}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"redirect_uris":["https://localhost:7000/api/oidc/rp/https%3A%2F%2Flocalhost%3A7000"],"client_id":"
|
|
1
|
+
{"redirect_uris":["https://localhost:7000/api/oidc/rp/https%3A%2F%2Flocalhost%3A7000"],"client_id":"fa4df5e2bbab2e46f5b419848548ccbf","client_secret":"8ebbe4ee69e0bdb5e9cb1f32af2f1c42","response_types":["code","id_token token","code id_token token"],"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"application_type":"web","client_name":"Solid OIDC RP for https://localhost:7000","id_token_signed_response_alg":"RS256","token_endpoint_auth_method":"client_secret_basic","default_max_age":86400,"post_logout_redirect_uris":["https://localhost:7000/goodbye"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"provider":{"url":"https://localhost:7000","configuration":{"issuer":"https://localhost:7000","jwks_uri":"https://localhost:7000/jwks","scopes_supported":["openid","offline_access","webid"],"response_types_supported":["code","code token","code id_token","id_token code","id_token","id_token token","code id_token token","none"],"token_types_supported":["legacyPop","dpop"],"response_modes_supported":["query","fragment"],"grant_types_supported":["authorization_code","implicit","refresh_token","client_credentials"],"subject_types_supported":["public"],"id_token_signing_alg_values_supported":["RS256","ES256"],"token_endpoint_auth_methods_supported":["client_secret_basic"],"token_endpoint_auth_signing_alg_values_supported":["RS256","ES256"],"display_values_supported":[],"claim_types_supported":["normal"],"claims_supported":["sub","iss","aud","exp","iat","webid"],"claims_parameter_supported":false,"request_parameter_supported":true,"request_uri_parameter_supported":false,"require_request_uri_registration":false,"check_session_iframe":"https://localhost:7000/session","end_session_endpoint":"https://localhost:7000/logout","authorization_endpoint":"https://localhost:7000/authorize","token_endpoint":"https://localhost:7000/token","userinfo_endpoint":"https://localhost:7000/userinfo","registration_endpoint":"https://localhost:7000/register"},"jwks":{"keys":[{"kid":"
|
|
1
|
+
{"provider":{"url":"https://localhost:7000","configuration":{"issuer":"https://localhost:7000","jwks_uri":"https://localhost:7000/jwks","scopes_supported":["openid","offline_access","webid"],"response_types_supported":["code","code token","code id_token","id_token code","id_token","id_token token","code id_token token","none"],"token_types_supported":["legacyPop","dpop"],"response_modes_supported":["query","fragment"],"grant_types_supported":["authorization_code","implicit","refresh_token","client_credentials"],"subject_types_supported":["public"],"id_token_signing_alg_values_supported":["RS256","ES256"],"token_endpoint_auth_methods_supported":["client_secret_basic"],"token_endpoint_auth_signing_alg_values_supported":["RS256","ES256"],"display_values_supported":[],"claim_types_supported":["normal"],"claims_supported":["sub","iss","aud","exp","iat","webid"],"claims_parameter_supported":false,"request_parameter_supported":true,"request_uri_parameter_supported":false,"require_request_uri_registration":false,"check_session_iframe":"https://localhost:7000/session","end_session_endpoint":"https://localhost:7000/logout","authorization_endpoint":"https://localhost:7000/authorize","token_endpoint":"https://localhost:7000/token","userinfo_endpoint":"https://localhost:7000/userinfo","registration_endpoint":"https://localhost:7000/register"},"jwks":{"keys":[{"kid":"nVBQDupx3q4","kty":"RSA","alg":"RS256","key_ops":["verify"],"ext":true,"n":"ySMiaLBSJ7VQ0wAkIUE5iCnic7Usf8JBA_dvqZmSDRKT6ubJPBaXlfsQIuCTO-RApeCHT_ooxz8Povx1mYbyUcwyAK1ghv8OFQk1VF2P_F-ZC4TbYFUg6tMhJ37ICvMPmxgXF0hvAozfpOFrefKEYqxzJocOHkgEvWHrEgRQIFnyLZ9FK02LLQ2zxXq6LHN5UpAhPKrhiruFe0fPp91bdYDlncm0azSXDgsHZ7_i1Bh-CXNcZi3kfFG5ydee9tgsF5PeoEQ4aGeo02HUSFV4ZKpLKyyx1LZswRDP5lf2aWV3b2X-rNmxnKofF5Rm5hOacyvwldyooYEC7n0g4wG9mw","e":"AQAB"},{"kid":"3xK--3pzWL4","kty":"RSA","alg":"RS384","key_ops":["verify"],"ext":true,"n":"oO1ay1rPM124iXnF-qYmWNxE6dLKI-jDu1ExGVHW5HjLftX84rXTNL5FivCNiOcU72xQazWq6S-KIK7kRQ8udSYrOcHTx2X56dYAgAxTmU6eU9pb7y0JCrvCpj9-K4dmteWYCrLnR-c2EAL0XIDau4CzqwVeXqh6jbkSjClzvluLDPCoh_hgbcjN_rjbgkOzuK_Ocv8RsPGwXs1MFbT41LEAdyvL4hkXOpa1xapPIXEeFmTp1XfPb_cONYQNix8rTU_Y5SAZNB0VMB8hicqKgNAvAdICG3U0Ghk8V_o6miFvFjruqXsEkS5vf86xHiuwRnt6LNg2_Y_o1J1RpGvroQ","e":"AQAB"},{"kid":"TN49gIwl0HE","kty":"RSA","alg":"RS512","key_ops":["verify"],"ext":true,"n":"toXYUkggnOKPWrRECQhGk2uBsO2UJytQzgPdqRr-Tw156nXLWt-eQNuAoweBmsnVNDQQ_9daAdHO389c3qCJ1QsVBFZPj2AV9i4BQ6oiZdxKsLKc8SwekxYc5jUkb4MCG121FCNdRZDk8Qf27bcn-j1RnPJ3ag7ZP_0G9prAT7UpsABoHQjmS71DnDr3e09PXGJ5XD9OQnne1gdu_pbfA3TAMUHvAFx5dZTaLNBkoZYEEBZ_u_g7QFR_9kD8DDwYX28dU6A79Kz8cMuXkqjrrnc2-8S8F-FWoFuvmYYqacDIz0RXa2RnK4_-Q9-1JcvpmeZUOb9zp_DTWNO6Ee7qyw","e":"AQAB"},{"kid":"2axtvPxyE9s","alg":"ES256","kty":"EC","crv":"P-256","key_ops":["verify"],"ext":true,"x":"OBMPR2Rq0rJcAUEeLVHxqMLqFPvwbfOU52nEF1MeCUA","y":"Wt5zXA9P2k9jQo7HD2mB_Z3aUsFe1al5W7j93TBtA3Y"},{"kid":"Am8rF8KUG7o","alg":"ES384","kty":"EC","crv":"P-384","key_ops":["verify"],"ext":true,"x":"YXk65a4JB4G-QBSYxGYwM7kNn7pFkXQoWFu_Tkn4RpRvMi8po8fApDZCPlYxSzpo","y":"eZAp3zd-IagqJ13t3EN4CJgahB18SalQls5wjMGS7MY0-rVfl8XdvTd-7L12_s0v"},{"kid":"kdQVTKgWVNs","alg":"ES512","kty":"EC","crv":"P-521","key_ops":["verify"],"ext":true,"x":"AZh-PMf34JeSL1GWt_L5VK5L1FcnO_Xxr17xOCSUHuNLKd9THBlVauN3KHz0MR2vdQndemhsEQb5aXrVG0nGpBt5","y":"AdeXay9u56meWQ65iqieoFsS0hvUrh7LU9pSGMOrXy3KBoZFkRCvJnQAGqloCxZ-_9xbBtjz4iXjHF7uTzT4_o96"},{"kid":"J-qDVDlB01w","kty":"RSA","alg":"RS256","key_ops":["verify"],"ext":true,"n":"mlRtJ8bcLAH91tXlkRZOIkLKUEhtEcT1NsF81wG4xi6PVrSKZ71UgLwVO3HbX7xp7BMB21TBcx1qGEE5iKW2Xbl9gm1tIO-rXgYHKH86pEOwzzPwv9TTBFa_1yMeQdhvQitif2h-Y8ltR_qgya_mxJxP5Ib8cy1qGRl3JH-yfoswnOrVZWyqVJTJzPX6MvWbGmMCEUHCriNqRzJrysfsFd5oohLZCSkV-r90XZJ73giC560evXD2jkmQjGZ-ARqM6-vSK-Lz71yRxPspTlOzDGEIar2QvmCTlQg5pVnsK24zNfQj3YWfe68O8v9r4dU14tJaGexSoYtZQ9Y0gjVjTQ","e":"AQAB"},{"kid":"TTUjxuWHxxc","kty":"RSA","alg":"RS384","key_ops":["verify"],"ext":true,"n":"vL86sEXlGX8wpeC_fcOG66Bgz-QLYWcRV15BvlW4N75V4S3dDbBBZfS496D2k7iizD8BxLLMrXsywNAdqAC674M7opRBGyHqA_FnfeMSy_3nqzQq1yTRa81wM_ZmQ5Lgfi6AAQouehhnajtUCGZLh44WOc74m2dyCux6QJD_EQmaOy-KcDCRbWHfl0nsTzyY89w8jTfMRHWOsxL5SzgM2j3c1TfARVMuCo660BnMnWv6Jak4mzxLoAZr2kK69QOB_I9E-PlDj42Slx2Zh-Xjya35KFizaYZxzUMjAd1_J41D39_icSvcO5Om3n4mHCP7HabGeVe138RiN9KbFNGRqQ","e":"AQAB"},{"kid":"BtuuC6IV0CE","kty":"RSA","alg":"RS512","key_ops":["verify"],"ext":true,"n":"tngF0l_64fYxspLgmgAel1cf8Lw4Zb4JbxaIAIzH300lypaeWnuKIwPpc2Dl8mfkGQhO04n-5ppyn4NTNBw2fn94U1jhJ-SBB3ucd2Co2PniREqPa_OB0Kn1U_bZrpHkGWTR2FukRyAXA_GmlE14b9cIAwZgkP2maOJeWtAVhjGeHOh5DJrBBQzj-Idq7vTfaVPFvk2nyzP6eSO4VtxtNc5VoNi47XEhtdFiawsb9I_GM-Dt7ef9sngfcUhgxhYMoGDwS5p6bsZb3beTt5d1xlv7uJRc53r99O2kkJKF-7DstKTsbTe2z371h87UTX_yDmpHNQLInK9ByigDWZCl9w","e":"AQAB"},{"kid":"3zDDDL_7OQU","alg":"ES256","kty":"EC","crv":"P-256","key_ops":["verify"],"ext":true,"x":"OiOy59cT-jbHCf7rsM5xS7GZeSP7_jVpcXyydVxNtd4","y":"F2pe6Lv8-h3D5GiSCJJln1lGFynNsxL5M9YvpPKH6bE"},{"kid":"p06_hWw3zew","kty":"RSA","alg":"RS256","key_ops":["verify"],"ext":true,"n":"ufzYbncrOS6MlHQGUaBhKT-FI3ULFOmO076i2Nopmv9IrdbMfXBK-VciEfuKZ8CjJcAZ_GOZiC54LQxV2R2bnqM3aqo0OlD8S-vnYLuHpw0s2YIeWgo8bq-aEZz4Mf2r3aDtq9FE47JqiToIdULvkyBJ5nF_xuuTvmewFvAMz82XSgmkRzij-gd4hoWqfR-XoNAKVHjP6QZP2zOq5GYJt76IzUE_p_c5KG7cvMhg54toIN_Vka08MnZhIBdTPjCM34yt7GhtYBnLWVbZu6c4vUmw1i73n55Kzu9WBpO-f-BsygwdnshvK0N-n_qoYkXZoXfQUDYVa-E-AqSk5qjw4w","e":"AQAB"},{"kid":"H3ISYSU367E","alg":"ES256","kty":"EC","crv":"P-256","key_ops":["verify"],"ext":true,"x":"7ZS0kGl_MVQ_ZCV56yjZ-NDFAvGBdf5qpx7eXimIxAk","y":"asuO8-rboync7Cqx4bC2-wWgGCa0dS-ka277VLuR6Ok"}]}},"defaults":{},"registration":{"redirect_uris":["https://localhost:7000/api/oidc/rp/https%3A%2F%2Flocalhost%3A7000"],"client_id":"fa4df5e2bbab2e46f5b419848548ccbf","client_secret":"8ebbe4ee69e0bdb5e9cb1f32af2f1c42","response_types":["code","id_token token","code id_token token"],"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"application_type":"web","client_name":"Solid OIDC RP for https://localhost:7000","id_token_signed_response_alg":"RS256","token_endpoint_auth_method":"client_secret_basic","default_max_age":86400,"post_logout_redirect_uris":["https://localhost:7000/goodbye"],"registration_access_token":"eyJhbGciOiJSUzI1NiJ9.eyJpc3MiOiJodHRwczovL2xvY2FsaG9zdDo3MDAwIiwiYXVkIjoiZmE0ZGY1ZTJiYmFiMmU0NmY1YjQxOTg0ODU0OGNjYmYiLCJzdWIiOiJmYTRkZjVlMmJiYWIyZTQ2ZjViNDE5ODQ4NTQ4Y2NiZiJ9.kWGbNpVksy_WKtjDBuEe1JAWog1bwI8fnNtft2RYn5FO6klv1jSw1oTISYvjuRYqCZgNB5WxR28uOgCql-8AhlKSh7cud6lbfFloFdNyx0W3sVs577E4riDiI8VJpEIkqh2o1jZI94P60VH379_zwtfYbmGZqo8r9kN60uat3JHi8dXhyvx_iu7WMgOec7vt0Bqd5j2WDPEgXrZN-CHqtYc6DWgldJkezc_Bqv-olnR4Y1ZaZQwMLb0Pj18JSOS8TneT-dxI1cqxzxmqTKAgt1YvDH9RczLG_xTxmDhlA6ef8g3PgZIcNuMCTX9UITCvUvhk5DRySgUcuCKSIfHZbw","registration_client_uri":"https://localhost:7000/register/fa4df5e2bbab2e46f5b419848548ccbf","client_id_issued_at":1767314961,"client_secret_expires_at":0},"store":{}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"redirect_uris":["https://localhost:7001/api/oidc/rp/https%3A%2F%2Flocalhost%3A7001"],"client_id":"
|
|
1
|
+
{"redirect_uris":["https://localhost:7001/api/oidc/rp/https%3A%2F%2Flocalhost%3A7001"],"client_id":"f5b232666f5d2d55ab842de231e70afe","client_secret":"c75f5ecefc02da72ecbc92a765ed48ba","response_types":["code","id_token token","code id_token token"],"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"application_type":"web","client_name":"Solid OIDC RP for https://localhost:7001","id_token_signed_response_alg":"RS256","token_endpoint_auth_method":"client_secret_basic","default_max_age":86400,"post_logout_redirect_uris":["https://localhost:7001/goodbye"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"provider":{"url":"https://localhost:7001","configuration":{"issuer":"https://localhost:7001","jwks_uri":"https://localhost:7001/jwks","scopes_supported":["openid","offline_access","webid"],"response_types_supported":["code","code token","code id_token","id_token code","id_token","id_token token","code id_token token","none"],"token_types_supported":["legacyPop","dpop"],"response_modes_supported":["query","fragment"],"grant_types_supported":["authorization_code","implicit","refresh_token","client_credentials"],"subject_types_supported":["public"],"id_token_signing_alg_values_supported":["RS256","ES256"],"token_endpoint_auth_methods_supported":["client_secret_basic"],"token_endpoint_auth_signing_alg_values_supported":["RS256","ES256"],"display_values_supported":[],"claim_types_supported":["normal"],"claims_supported":["sub","iss","aud","exp","iat","webid"],"claims_parameter_supported":false,"request_parameter_supported":true,"request_uri_parameter_supported":false,"require_request_uri_registration":false,"check_session_iframe":"https://localhost:7001/session","end_session_endpoint":"https://localhost:7001/logout","authorization_endpoint":"https://localhost:7001/authorize","token_endpoint":"https://localhost:7001/token","userinfo_endpoint":"https://localhost:7001/userinfo","registration_endpoint":"https://localhost:7001/register"},"jwks":{"keys":[{"kid":"
|
|
1
|
+
{"provider":{"url":"https://localhost:7001","configuration":{"issuer":"https://localhost:7001","jwks_uri":"https://localhost:7001/jwks","scopes_supported":["openid","offline_access","webid"],"response_types_supported":["code","code token","code id_token","id_token code","id_token","id_token token","code id_token token","none"],"token_types_supported":["legacyPop","dpop"],"response_modes_supported":["query","fragment"],"grant_types_supported":["authorization_code","implicit","refresh_token","client_credentials"],"subject_types_supported":["public"],"id_token_signing_alg_values_supported":["RS256","ES256"],"token_endpoint_auth_methods_supported":["client_secret_basic"],"token_endpoint_auth_signing_alg_values_supported":["RS256","ES256"],"display_values_supported":[],"claim_types_supported":["normal"],"claims_supported":["sub","iss","aud","exp","iat","webid"],"claims_parameter_supported":false,"request_parameter_supported":true,"request_uri_parameter_supported":false,"require_request_uri_registration":false,"check_session_iframe":"https://localhost:7001/session","end_session_endpoint":"https://localhost:7001/logout","authorization_endpoint":"https://localhost:7001/authorize","token_endpoint":"https://localhost:7001/token","userinfo_endpoint":"https://localhost:7001/userinfo","registration_endpoint":"https://localhost:7001/register"},"jwks":{"keys":[{"kid":"Vy4jZCTH2pQ","kty":"RSA","alg":"RS256","key_ops":["verify"],"ext":true,"n":"onv-8SMpZ0RcQ-gKGCXMINsxFAQ30gN1DZi8hhOWrQajNep1hruQ0TfDBWtd-ql0qdjp_TpAd75Jtf8mIiHIU_qyaB2EjrR2cfuB5C1QgKngfvm_SxO9MBFUYO0cZXvUflyxR8oFlQus6SsWPUizV9WP7IFJ1ZO5OTnAuAkNDE332Q_8_08GRCyzx8QIg66EThzF2LWV9F1gdtmZkO8al79bQcQ5_l4xYJA3mOE_2Cr0vmpvMxGejkPOYNETZ3UrdA61T-EbwTgRIFHqzNhJNXGGu0-wHcDVR7rYuNjL38R7B6ZmLCvl4onyoohNh9b6jr6yuoVpqIzcIEbQ574TwQ","e":"AQAB"},{"kid":"BNWr4WZoL1o","kty":"RSA","alg":"RS384","key_ops":["verify"],"ext":true,"n":"xbMlMJKIj6_dg47e2Yqs_5p1AfAU8nOkURO77A-OlY2tuYLzkY9o3kCYIIh0QDFCUiDVCtCW_82zui8KPhXXfgfG2Ol-d6q4mDouPK_hp14xQhIhzvttq22hibqh30d9ybIy2Xg_ojNUXKDyjfobO7hV-lHAAEwsddFD58l0v6VF6_Q9QBEXNPSIMnNeQ62UD8T_pHCSjIfipCNbNFJNgYqqwGR7B641xv9ofJLJ70eoNy8bd8HUM1XbrDbwUW08CVVAIIp5YoH2UoDXsegRtnbTRWgx33S-D-ewJ7GD509X2BkW3k8wc4VqAXxIG6FYBDhWz3Odz9HMxU8DNkxevQ","e":"AQAB"},{"kid":"hXGm6r4-hdE","kty":"RSA","alg":"RS512","key_ops":["verify"],"ext":true,"n":"zL0vjgkY_kR_fHH082p5xgftgwdP8DI9alpqtz1DOHZPEtCG9TqvvPGwBBcpr1jcde-l20Aw_PCtBGDU-g-ArEHEd0qTddWzwTjqPdg4RlzZvPyzRdd81uz3Mfk411R-U10T9Z0QO5NCMf_3imwogE3c9_192JHQYJVxaKz67SU97JookpF-lJfVjwwJHl0a0a9d3LbF_hYWxeMIE3nmGrzc8Dnc_PCokM7fCPQDE-YSBA_1jfqt2JhpimgTMQr1P5AAXBJvvXzHUc1oitc7MNZsHIXkCBEF9rGPKAlzKPbLEuAPyBmrcjc4Ds-a1aFFNwktqKmINJ8a0chQ7pDS_w","e":"AQAB"},{"kid":"cEnsXWVH4zE","alg":"ES256","kty":"EC","crv":"P-256","key_ops":["verify"],"ext":true,"x":"rDrSx7TtDoJLzltEl6QG5tZsvgB8DLv31P3dOc1_Kw0","y":"HLb5ice0fGsv9yaRlSJ7TVdraHJNB-qvbohzf9Zj-sU"},{"kid":"VB6It2aQvPo","alg":"ES384","kty":"EC","crv":"P-384","key_ops":["verify"],"ext":true,"x":"GqlbJruGR1G5I9-HeMYjJmRKE8fPlPDAEfdkk8KyDg7bwhdqwBGDoMWJv6LKCyQ8","y":"yz2g3JqugcCh_9bsJi3E3-ZRYosnl3msz0o-bznqipdQeDh-a4LovuuZHtEvtNut"},{"kid":"Z2LVaKXxNik","alg":"ES512","kty":"EC","crv":"P-521","key_ops":["verify"],"ext":true,"x":"ACRshA6bpvaoM5NgQyJ3C503sICnzifBHyPGZgA7N-qAr1_YUuY0kBQhwKMHkfL1VhEHpsNY1eKLETUQDbx9g2mY","y":"AFFn9f2SQnuN6_HPUoLqdKqAFbND2-4ZiWzC4nwuyYpQvLtBpC82WjGQCUO8xv5XPMOO9qwqCflCj48qOKYxWr9N"},{"kid":"17O93a2lwlo","kty":"RSA","alg":"RS256","key_ops":["verify"],"ext":true,"n":"4hLX_1ETFxahFkQtHTmCUjidfi6RcIe5yhwkfWhjxeUw6sZKk5ZpNBH2ojZUr-nBz8MUf8xqIWXy7v98FEKeCr9XhznMpbpJXX2rfZsm44Oqjztg9LEKp2dVM90Lu0R-FKeLQ57jj3CvSSQPLdoIAHTAnD4-TYI1w2dfNyV-CH-zE5bBiXrhVCQvBi2adeEedZpwv5P-E51QKdFLmq7KIlgLYV11CFj9CbnJvBmUbSgiNh0oEzmJBkXpfSZZ7so_234b-JHGOZ-s50fYmKBJHyti1xgm6qiDKK1dIzo3998OjI_RBnTnvAU7xswvDe6EetnaevhV-e0Atx3lRKPsOQ","e":"AQAB"},{"kid":"UxJrlBBktj8","kty":"RSA","alg":"RS384","key_ops":["verify"],"ext":true,"n":"qY5eQf-v1MQyN6yogiDH1-gsQOMtb6WEv4lq-ACnaNpp-NNuimOi1q5jZ7H2YoEQkX4ehpoRMVlKEXCqACxdXA_SmXXVgCs5gTQBqlGtpjFeXzKJO1hW0mEGpxsAVvY1olsIVI61y6jr6xYSVuq5TqG9511T5Cv-H9yU4vzHiPkzuy1uUSs2B90l4VUWemIrIrKzaf4JtZpdckvEzB68EMPLMq6DLGN3_GvttIUskPVJbmewprRcS7M1_7C4v-UwwfmsyCEg_Hd5yvIpMsZthAzRWGiAF_V7OuVaTOoVst-CMXa3cyuI9aC7Sl_MdJQ7KM7N4_pzhVmJEQyHN34q_w","e":"AQAB"},{"kid":"fLKlh_guv7k","kty":"RSA","alg":"RS512","key_ops":["verify"],"ext":true,"n":"vzNRJhm_ksOXH3kbE1W7iSep3wGCR6PBFvkHFR10257YBNrqgQwcucBJgOEz_SdqtESE1xRv-akpCt_aTfdCynya4F5ByPHGuybayyaBz6M6Lw98OPIejoQIZWc_p9gQ2-UiO-sg4xJzyYb5WRJ4mb2eQUCjjpi_nCv5hY_q8ET9FmtdQnAoMweGMJsD5Z2hMvMCtvMwyjhCy_8ubm6Ff_gqXvbpeNUci8iSqrT2Nj7fawdp2zlCOel4z-EbSY-d6F4n-yaG4b3oLvtm5DKauAulmn3xmzENFCsujvs5EpF9UY_NJggYArhym-dznJaJ9yUBv-SlYsWMpQkGrPD-dw","e":"AQAB"},{"kid":"V7g6FdLYozU","alg":"ES256","kty":"EC","crv":"P-256","key_ops":["verify"],"ext":true,"x":"yU5EnFT8-Y19_aLr5laOTy6iuLFcWUFdKBkFT4dLe_s","y":"khbkv1uyrcf01qJldG2_h-AWwq8a0DhAVh1_TDtBmGQ"},{"kid":"l6yFyYfw0uU","kty":"RSA","alg":"RS256","key_ops":["verify"],"ext":true,"n":"nWU9um-TwNhulCtYYED83eSChtBvIhd_9ehD87WLrDgqItmXWKy2T9BanDLp9_15587jqm95A_xyV8wKd9jntnu1IN1_eCv_GwPSTkb7eJAsETnKbL1W44v2Kb4NO-S92Q_zs72aeY9xqB63bYmRVBajRmfBXEiu-WcxYFEew1FUlR7tR42JQrTPpKxO7v6iznXkwNYsjP_3_63AFkmhBFGQl8DXuaEVxeg37cYrE0aBl_SDtkd34AmysF6rl57kAEGBrENtn5RimOgH4nReRN9ns-TaFExge-_PFlqYe3yr2K-dPYhNrbqA78IFtTa4n8JTUsoZRJ5owb_u4nL-Xw","e":"AQAB"},{"kid":"WV2bL4LaHLY","alg":"ES256","kty":"EC","crv":"P-256","key_ops":["verify"],"ext":true,"x":"ugM-9XKe5B6iBbih1AaiO8RVM1v71tYVtqOkWb_nGO4","y":"4C0_vd4S7RICVzfGhP8tfnLBz02c9baRrfJX9y4EmfI"}]}},"defaults":{},"registration":{"redirect_uris":["https://localhost:7001/api/oidc/rp/https%3A%2F%2Flocalhost%3A7001"],"client_id":"f5b232666f5d2d55ab842de231e70afe","client_secret":"c75f5ecefc02da72ecbc92a765ed48ba","response_types":["code","id_token token","code id_token token"],"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"application_type":"web","client_name":"Solid OIDC RP for https://localhost:7001","id_token_signed_response_alg":"RS256","token_endpoint_auth_method":"client_secret_basic","default_max_age":86400,"post_logout_redirect_uris":["https://localhost:7001/goodbye"],"registration_access_token":"eyJhbGciOiJSUzI1NiJ9.eyJpc3MiOiJodHRwczovL2xvY2FsaG9zdDo3MDAxIiwiYXVkIjoiZjViMjMyNjY2ZjVkMmQ1NWFiODQyZGUyMzFlNzBhZmUiLCJzdWIiOiJmNWIyMzI2NjZmNWQyZDU1YWI4NDJkZTIzMWU3MGFmZSJ9.GUDeL8G6bLb-73aoSMF57kOZuoQQ5MvT07-_wtzSTQpcgY1aSCNp52tdMfb5LHd1bPB_h-URYmdqduG54IApggOhH1mP6DdfYElSE8VrGcJMJeY9CbcIDKM7PKPcovBmbq39Z4t0oQ4n5XTLtm3-ghsIHPnBB8WfnZ2StNgwSsXaxu3akN0PX8WmNerf3HQV2TNUaTP9wCFxpLVyfWSYCi3iRBsrW0u71wHXHuQTPoBzfD0WRwfJUFYv9prNhIHNZN8vtXDvm0BaQa6GCCeYPa6epKcIxAMoSOSYrW_sYr2w5iTQzH_fO61heExsIO5QW2Rs6_e9dAXdGEW77kyhmw","registration_client_uri":"https://localhost:7001/register/f5b232666f5d2d55ab842de231e70afe","client_id_issued_at":1767314961,"client_secret_expires_at":0},"store":{}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"redirect_uris":["https://localhost:5002/api/oidc/rp/https%3A%2F%2Flocalhost%3A5002"],"client_id":"
|
|
1
|
+
{"redirect_uris":["https://localhost:5002/api/oidc/rp/https%3A%2F%2Flocalhost%3A5002"],"client_id":"24d821e99dd91e7487559dedb7e3d62f","client_secret":"c430ae851157ce0f84f06abfc9d1e162","response_types":["code","id_token token","code id_token token"],"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"application_type":"web","client_name":"Solid OIDC RP for https://localhost:5002","id_token_signed_response_alg":"RS256","token_endpoint_auth_method":"client_secret_basic","default_max_age":86400,"post_logout_redirect_uris":["https://localhost:5002/goodbye"]}
|