如何在没有会话的情况下整合passport-facebook和jwt?

时间:2017-09-25 08:54:08

标签: jwt passport.js passport-facebook express-jwt

我想使用passport-github或facebook登录jwt令牌,而不使用服务器上的保存会话。 但是我们有两个来自前端的请求:

app.get('/auth/facebook',
  passport.authenticate('facebook'));

app.get('/auth/facebook/callback',
  passport.authenticate('facebook', { failureRedirect: '/login' }),
  function(req, res) {
    // Successful authentication, redirect home.
    res.redirect('/');
  });

如何处理前端代码?

通常情况下,我们只有一个请求

axios.post(`${API_URL}/auth/login`, { email, password })
.then(response => {
  cookie.save('token', response.data.token, { path: '/' });
  dispatch({ type: AUTH_USER });
  window.location.href = CLIENT_ROOT_URL + '/dashboard';
})
.catch((error) => {
  errorHandler(dispatch, error.response, AUTH_ERROR)
});
}

所以我们可以在本地保存令牌。但对于passport-facebook,我们有两个请求(' / auth / facebook'和' / auth / facebook / callback')。那么如何在本地保存令牌呢?

1 个答案:

答案 0 :(得分:0)

首先,我认为GET请求不起作用。您需要使用一个链接来触发/ auth / login。

<a href="http://localhost:5150/auth/facebook">

要将令牌发送到客户端,您应该重定向到客户端页面,其中jwt存储在cookie中。

const token = user.generateJwt();
res.cookie("auth", token);
return res.redirect(`http://localhost:3000/socialauthredirect`);

并在客户端登录页面提取jwt并将其保存到本地存储。

class SocialAuthRedirect extends Component {
  componentWillMount() {
    this.props.dispatch(
      fbAuthUser(getCookie("auth"), () => {
        document.cookie =
          "auth=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;";
        this.props.history.push("/profile");
      })
    );
  }

  render() {
    return <div />;
  }
}