yapi/server/middleware/checkToken.js

18 lines
574 B
JavaScript
Raw Normal View History

2017-07-27 19:49:26 +08:00
// const jwt = require('jsonwebtoken');
2017-07-10 20:51:04 +08:00
//检查token是否过期
module.exports = async ( ctx, next ) => {
// const authorization = ctx.get('Authorization');
// if (authorization === '') {
// ctx.throw(401, 'no token detected in http header ');
// }
// const token = authorization.split(' ')[1];
// let tokenContent;
// try {
// tokenContent = await jwt.verify(token, 'qunar'); //如果token过期或验证失败将抛出错误
// } catch (err) {
// ctx.throw(401, 'invalid token');
// }
await next();
2017-07-27 19:49:26 +08:00
};