javascript-solid-server 0.0.26 → 0.0.27
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/package.json +1 -1
- package/src/idp/provider.js +2 -1
package/package.json
CHANGED
package/src/idp/provider.js
CHANGED
|
@@ -149,8 +149,9 @@ export async function createProvider(issuer) {
|
|
|
149
149
|
scopes: ['openid', 'webid', 'profile', 'email', 'offline_access'],
|
|
150
150
|
|
|
151
151
|
// Claims configuration
|
|
152
|
+
// Always include webid with openid scope for Solid-OIDC compliance
|
|
152
153
|
claims: {
|
|
153
|
-
openid: ['sub'],
|
|
154
|
+
openid: ['sub', 'webid'],
|
|
154
155
|
webid: ['webid'],
|
|
155
156
|
profile: ['name'],
|
|
156
157
|
email: ['email', 'email_verified'],
|