remove duplicate scope definition
scope can be defined both within the strategy declaration or when invoking passport
This commit is contained in:
parent
883e07491b
commit
7db8658518
|
@ -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
|
||||
)
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue