I need to implement a user idle session timeout, as after completing a successful login, I have access_token which I am verifying on every request come to serve using /oauth2/introspect
so if access_token is active user can access the resource. so now i want to refresh expire time of access_token on every request and compare with idle session time configured.
for example, if session timeout is configured 15 min and the server is not receiving request till 14 min if on next second request comes I need to refresh expire time of token to 15 min.
Thanks
version
[1.0.0-beta.8]