我用Express.js创建了一个FB,Google,auth服务器。
要将JWT发送到客户端,我将令牌存储在cookie中,然后重定向到客户端URL。
if (user) {
const token = user.generateJwt();
res.cookie("auth", token);
return res.redirect(`http://localhost:3000/socialauthredirect`);
} else {
return res.redirect("http://localhost:3000");
}
虽然我在本地测试服务器应用程序时已经发送了cookie,但是在我将它部署到Heroku之后它不起作用。
有没有人有想法?提前谢谢。