3

我已经设置了使用 Google 策略的护照,并且可以直接访问 /auth/google。我目前拥有它,因此当您使用 google 身份验证 oauth2 登录时,我的端点将通过检查req.user. 当我刚刚到达浏览器中的端点时,这很有效。如果我去/auth/googlethen /questions,我将能够提出那个 get 请求。但是,当我尝试从 redux 发出 fetch 请求时,我会收到一条错误消息说Uncaught (in promise) SyntaxError: Unexpected token < in JSON at position 0. 它出现是因为 fetch API 试图到达我的/questions端点,通过我的loggedIn中间件然后不满足if (!req.user)并被重新定向。关于如何使用 PassportJS 和 passport-google-oauth2 从 Fetch API 进行身份验证的任何想法?

loggedIn功能:

function loggedIn(req, res, next) {
  if (req.user) {
    next();
  } else {
    res.redirect('/');
  }
}

这是我的“GET”端点的代码。

router.get('/', loggedIn, (req, res) => {
  const userId = req.user._id;

  User.findById(userId, (err, user) => {
    if (err) {
      return res.status(400).json(err);
    }

    Question.findById(user.questions[0].questionId, (err, question) => {
      if (err) {
        return res.status(400).json(err);
      }

      const resQuestion = {
        _id: question._id,
        question: question.question,
        mValue: user.questions[0].mValue,
        score: user.score,
      };

      return res.status(200).json(resQuestion);
    });
  });
});

redux 获取请求:

function fetchQuestion() {
  return (dispatch) => {
    let url = 'http://localhost:8080/questions';
    return fetch(url).then((response) => {  
      if (response.status < 200 || response.status >= 300) {
        let error = new Error(response.statusText);
        error.response = response;
        throw error;
      }
      return response.json();
    }).then((questions) => {
      return dispatch(fetchQuestionsSuccess(questions));
    }).catch((error) => {
      return dispatch(fetchQuestionsError(error));
    }  
  };
}
4

1 回答 1

6

Fetch API 默认不发送 cookie,Passport 需要确认会话。尝试将credentials标志添加到您的所有获取请求中,如下所示:

fetch(url, { credentials: 'include' }).then...

或者如果您不执行 CORS 请求:

fetch(url, { credentials: 'same-origin' }).then...

于 2016-10-28T08:12:01.487 回答