Skip to content

Commit

Permalink
Remove unnecessary scope from Client ID
Browse files Browse the repository at this point in the history
  • Loading branch information
NSeydoux committed Jul 1, 2024
1 parent fc24826 commit b4c701b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/helpers/clientId/clientId.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit b4c701b

Please sign in to comment.