JWT中的令牌无效

时间:2020-11-08 14:38:25

标签: authentication jwt postman

我不知道为什么会这样,请帮助

这是代码

const jwt = require("jsonwebtoken");

const authenticating = (req, res, next) => {
  // verify token
  const token = req.header("Authorization");
  const KEY = "jksbdjaksfbaifuhbakfabfkuajbnkeufbaejkfewufg";
  try {
    const decoded = jwt.verify(token, KEY);
    req.user = decoded;
    next(); // if success then return next()
  } catch (err) {
    res.status(403).json(err);
  }
};

这就是我在邮递员中得到的 { "name": "JsonWebTokenError", "message": "invalid token" }

请帮助一个编程小子。

0 个答案:

没有答案