From b4c701b912454bbaf59e50875eb1d8ba84383b77 Mon Sep 17 00:00:00 2001 From: Nicolas Ayral Seydoux Date: Mon, 1 Jul 2024 15:50:52 +0200 Subject: [PATCH] Remove unnecessary `scope` from Client ID --- src/helpers/clientId/clientId.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/helpers/clientId/clientId.ts b/src/helpers/clientId/clientId.ts index bdee1297..6d6fb08e 100644 --- a/src/helpers/clientId/clientId.ts +++ b/src/helpers/clientId/clientId.ts @@ -32,9 +32,6 @@ export function buildClientIdentifierDoc(hostname: URL, clientId: URL) { post_logout_redirect_uris: [hostname, new URL("login", hostname)], // Support refresh_tokens for refreshing the session: grant_types: ["authorization_code", "refresh_token"], - // The scope must be explicit, as the default doesn't include offline_access, - // preventing the refresh token from being issued. - scope: "openid webid offline_access", response_types: ["code"], token_endpoint_auth_method: "none", application_type: "web",