Answer by Berthier Lemieux for Cookie not deleted after logout with Asp.Net 5...
Another gotcha that could leave the identity server cookies on the client is a logout failure. One typical cause of logout failures is a misconfiguration of the client’s PostLogoutRedirectUris. The...
View ArticleAnswer by M.J. for Cookie not deleted after logout with Asp.Net 5 Identity 3.0
In addition to everything already mentioned, also make sure you are not omitting the scheme argument in the calls to SignInAsync and SignOutAsync, and that you are passing the same value to both. For...
View ArticleAnswer by McGuireV10 for Cookie not deleted after logout with Asp.Net 5...
The problem is that your RedirectToAction overwrites the redirect to the Identity Server endsession URL that SignOutAsync issues. (The same explanation for the same problem is given here by Microsoft's...
View ArticleAnswer by marco birchler for Cookie not deleted after logout with Asp.Net 5...
I could fix the dirty state of my application after the logout by manually delete the cookie after the logout action: public async Task<ActionResult> Logout() { if (User.Identity.IsAuthenticated)...
View ArticleCookie not deleted after logout with Asp.Net 5 Identity 3.0
I do have an Asp.Net MVC Application (version 6.0.0-rc1-final) with custom role and user stores. After some struggling I finally could create a working login mechanism. However I do have now troubles...
View Article