gpt4 book ai didi

node.js - 如何在nodejs中将jwt token 到期时间设置为最大值?

转载 作者:IT老高 更新时间:2023-10-28 23:06:58 36 4
gpt4 key购买 nike

我不希望我的 token 过期并永远有效。

var token = jwt.sign({email_id:'123@gmail.com'}, "Stack", {

expiresIn: '24h' // expires in 24 hours

});

在上面的代码中我已经给出了 24 小时..我不希望我的 token 过期。该怎么办?

最佳答案

JWT 的 exp 声明是可选的。如果一个token没有,则认为它没有过期

根据 https://www.npmjs.com/package/jsonwebtoken 的文档expiresIn 字段也没有默认值,所以省略它。

There are no default values for expiresIn, notBefore, audience, subject, issuer. These claims can also be provided in the payload directly with exp, nbf, aud, sub and iss respectively, but you can't include them in both places.

var token = jwt.sign({email_id:'123@gmail.com'}, "Stack", {});

关于node.js - 如何在nodejs中将jwt token 到期时间设置为最大值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45207104/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com