我尝试为我的 jwt 设置发布时间和到期时间。我似乎无法确定日期。它们要么相差太远,要么根本不是整数。我想在不使用 moment.js 的情况下实现这一目标。这是我到目前为止得到的(这也是不正确的)。
const payload = {
// issued at time
iat: currentDate.getTime() / 1000,
// JWT expiration time (10 minute maximum)
exp: new Date(currentDate.getTime() + 10 * 60000).getTime() / 1000,
// GitHub App's identifier
};
温温酱
相关分类