我在项目中使用的是openid connect node模块。只是想延长有效期。
我使用set-timeout函数在openid-connect / node_module / index.js中检查了几个地方的代码。
setTimeout(function() {
req.model.auth.findOne({code: token}, function(err, auth) {
if(auth && auth.status == 'created') {
auth.destroy();
}
});
}, 1000*60*10);
是否可以选择延长到期日期/时间?
FYR:https://www.npmjs.com/package/openid-connect
在下面的链接中,他们使用setTimeout函数确定了到期日期。
https://github.com/agmoyano/OpenIDConnect/blob/master/index.js