Reputation: 6196
I've been following this article in order to get started with ASP.NET Identity: http://www.asp.net/vnext/overview/authentication/individual-accounts-in-aspnet-web-api
I'm logging in using the method shown in the article (i.e. using the token endpoint to get a bearer token). However, I'm unclear on what I need to do to then 'log out'?
Upvotes: 0
Views: 788
Reputation: 48314
You just stop to send the bearer token together with your consecutive requests. There is no explicit log out.
Upvotes: 1