v2.2.0
New Feature
node
- It is now possible to prevent a
Session
self-refreshing in NodeJS. To do so, a new
parameter is added to the constructor:Session({ keepAlive: false })
. This prevents
theSession
setting a callback to refresh the Access Token before it expires, which
could cause a memory leak in the case of a server-side application with many users.
It also avoids unnecessary requests being sent to the OpenID Provider.