I am using the hybrid flow with the refresh token. I want to limit the calls from my web server to my Auth/Resource servers i.e. unauthorized errors from the resource server and unnecessary updates of the access token
Question: Is there an expiry date on the access token or a way to add the expiry or issued date time to the Access token? I want to use this to test before refreshing the tokens.
I want to do this validation on the webserver. I just need the issued date on the access token
I do understand that the expiry date is not full proof and the token may still be invalid but I can cater for that scenario when it arises.
Thank you