remove duplicate scope definition

scope can be defined both within the strategy declaration or when invoking passport
This commit is contained in:
Rory Powell 2021-07-08 15:21:54 +01:00
parent 883e07491b
commit 7db8658518
2 changed files with 2 additions and 2 deletions

View File

@ -110,8 +110,7 @@ exports.strategyFactory = async function (config, callbackUrl) {
userInfoURL: body.userinfo_endpoint,
clientID: clientId,
clientSecret: clientSecret,
callbackURL: callbackUrl,
scope: "profile email",
callbackURL: callbackUrl
},
authenticate
)

View File

@ -153,6 +153,7 @@ exports.oidcPreAuth = async (ctx, next) => {
const strategy = await oidcStrategyFactory(ctx)
return passport.authenticate(strategy, {
// required 'openid' scope is added by oidc strategy factory
scope: ["profile", "email"],
})(ctx, next)
}