使用node-jsonwebtoken的JWT无效

时间:2017-02-07 16:34:02

标签: javascript node.js authentication jwt

我正在签署JWT:

import jwt from 'jsonwebtoken'
(...)
const payload = {
  exp: 604800,
  sub: user.email,
  scope: user.role
}
const token = jwt.sign(payload, config.secret)
res.json({ success: true, token: 'JWT ' + token})

当我从我的回复中复制并将其粘贴到jwt.io时,签名无效。

实施有什么问题?

enter image description here

0 个答案:

没有答案