I deployed a web app in azure with authorization/authentication being set-up. Once you logged in the web app you would be able to get the token using:
https:{webappname}.azurewebsites.com/.auth/me
then i tried to get the token and used it in postman using AUTHORIZATION header and it worked i was able to access the site with postman using that token. Now my concerns in after i logged out using:
https:{webappname}.azurewebsites.com/.auth/logout
I can still access the site using the token that i got recently. can someone explain why is this happening.
Thanks :D