Passport seems to support multiple strategies being passed in an array to passport.authenticate()
In trying to get this to work with koa-passport though, I've been unable to get subsequent strategies tried after the first fails. I've tried debugging it, and it appears that koa-passport largely implements its own logic for how authenticate flows and makes no attempt to support multiple strategies. Is this an accurate assessment or am I just doing it wrong?
Passport seems to support multiple strategies being passed in an array to
passport.authenticate()In trying to get this to work with
koa-passportthough, I've been unable to get subsequent strategies tried after the first fails. I've tried debugging it, and it appears thatkoa-passportlargely implements its own logic for howauthenticateflows and makes no attempt to support multiple strategies. Is this an accurate assessment or am I just doing it wrong?