节点OpenID Connect-延长到期日期/时间

时间:2019-01-21 11:11:59

标签: node.js oauth oauth-2.0 openid

我在项目中使用的是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函数确定了到期日期。

  • 行号:565,
  • 行号:615,
  • 行号:909,
  • 行号:948

https://github.com/agmoyano/OpenIDConnect/blob/master/index.js

0 个答案:

没有答案