Как добавить авторизацию в паспорт местного - PullRequest
0 голосов
/ 21 сентября 2018

Я использую аттестат, и оба логина и URL-адреса успеха защищены токеном авторизации, как добавить токен в перенаправленный URL.

 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
    }));
...