我使用护照,并且登录和成功Urls均受授权令牌保护, 如何将令牌添加到重定向的网址 谢谢。
api.router.post('/login', passport.authenticate('local-login', {
successRedirect : baseUrl + '/success', // redirect to the secure profile section
failureRedirect : baseUrl + '/echec', // redirect back to the signup page if there is an error
failureFlash : true // allow flash messages
}));