如何在Express Node.js中访问安全cookie?

时间:2020-04-17 05:30:06

标签: node.js express

我已经在一个api中设置了cookie。

res.cookie('login', result.id, {
  maxAge: 60 * 60 * 1000
});
res.cookie('user', token, {
  maxAge: 60 * 60 * 1000,
  httpOnly: true,
  secure: true
});

但是当我从其他api访问它时,我只能访问登录cookie,而不能访问用户cookie

console.log(req.cookies);
console.log(req.headers['cookie']);

0 个答案:

没有答案