admin管理员组

文章数量:1278916

I just implemented jwt-simple,on my backend in nodejs.i want to expire token by given time.

 var jwt = require('jwt-simple');
    Schema.statics.encode = (data) => {
    return JWT.encode(data, CONSTANT.ADMIN_TOKEN_SECRET, 'HS256');
};
Schema.statics.decode = (data) => {
    return JWT.decode(data, CONSTANT.ADMIN_TOKEN_SECRET);
};

how to add expires time in jwt-simple

I just implemented jwt-simple,on my backend in nodejs.i want to expire token by given time.

 var jwt = require('jwt-simple');
    Schema.statics.encode = (data) => {
    return JWT.encode(data, CONSTANT.ADMIN_TOKEN_SECRET, 'HS256');
};
Schema.statics.decode = (data) => {
    return JWT.decode(data, CONSTANT.ADMIN_TOKEN_SECRET);
};

how to add expires time in jwt-simple

Share Improve this question asked Oct 19, 2016 at 7:00 codercoder 5381 gold badge5 silver badges18 bronze badges
Add a ment  | 

5 Answers 5

Reset to default 5

There is no default exp. Two ways you can add it mannually:

  1. With plain js:

    iat: Math.round(Date.now() / 1000), exp: Math.round(Date.now() / 1000 + 5 * 60 * 60)

  2. With moment.js:

    iat: moment().unix(), exp: moment().add(5, 'hours').unix()

Source from original Github repository.

You can validate your token with a expirate date in the passport Strategy function, like this:

passport.use(new JwtStrategy(opts, function(jwt_payload, done){
    User.find({id: jwt_payload.id}, function(err, user){
        if (err) {
            return done(err, false, {message: "Incorrect Token!!"});
        }
        if (user) {
            if (user[0].token_expiration_date <= Date.now()){
                return done(null, false, {message: "Expired Token"});
            }else{
                return done(null, user);
            }
        }else{
            return done(null, false, {message: "Incorrect Token"});
        }

    });
}));

Hope that this can help you.

To be more precise, add exp attribute in your data object where exp is expiry time in unix format.

e.g.

var data = {"data":["some data"],exp:16872131302}
var jwt = require('jwt-simple');
    Schema.statics.encode = (data) => {
    return JWT.encode(data, CONSTANT.ADMIN_TOKEN_SECRET, 'HS256');
};
Schema.statics.decode = (data) => {
     return JWT.decode(data, CONSTANT.ADMIN_TOKEN_SECRET);
};

Use jsonwebtoken instead.

https://github./auth0/node-jsonwebtoken

const jwt = require(`jsonwebtoken`)

const token = jwt.sign({
  data: 'foobar'
}, 'secret', { expiresIn: '1h' });

You can use the exp field in the payload before calling the create function and for example you can use moment to get the time and add whatever you want. If you want to check if the token is expired or other type of error you can use jwt-simple-error-identify instead.

In his documentation there is an example of that.
https://www.npmjs./package/jwt-simple-error-identify

本文标签: javascriptHow to expire token in jwtsimpleStack Overflow