Browse Source

Fix: Error when retrieve token from some OIDC due to not necessary scope parameter

Benoit MOUQUET 5 years ago
parent
commit
b26e65c70c
1 changed files with 0 additions and 1 deletions
  1. 0 1
      packages/wekan-oidc/oidc_server.js

+ 0 - 1
packages/wekan-oidc/oidc_server.js

@@ -72,7 +72,6 @@ var getToken = function (query) {
           client_secret: OAuth.openSecret(config.secret),
           redirect_uri: OAuth._redirectUri('oidc', config),
           grant_type: 'authorization_code',
-          scope: requestPermissions,
           state: query.state
         }
       }