We are using azure ADAL to allow login to the application using azure bearer token
adal.js in the front end and ADAL libraries in c# for the backend API, the validity of the token is 60 min from the time it is issued by Azure.
But after you log out from the application (we are already clearing the client session cache), if you had access to the azure bearer token and the expiry time has not reached, the user will be able to use the bearer token to access the API directly.
We want to know if there is any way to revoke the bearer token user was using after logging out from the application(Azure) using the javascript or c# libraries.