我有护照设置使用谷歌策略,可以直接到/auth/Google great。我目前拥有它,因此当您使用google身份验证oauth2登录时,我的端点将通过检查req.user
进行身份验证。当我在浏览器中访问端点时,这是有效的。如果我去/auth/google
,然后去/questions
,我就能发出get请求。然而,当我尝试从redux获取请求时,我会得到一个错误消息说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));
}
};
}
Fetch API默认情况下不发送cookie, Passport需要发送cookie来确认会话。尝试将credentials
标志添加到所有的获取请求中,如下所示:
fetch(url, { credentials: 'include' }).then...
或者如果你不做CORS请求:
fetch(url, { credentials: 'same-origin' }).then...