I am designing a Web API with individual user accounts, and I am trying to develop a token based authentication system. At first I planned on providing OAuth 2 bearer tokens, but I then learned that that isn't possible in ASP.Net 5, so my question now is, can
we use Json Web Tokens along with some sort of auth middleware to develop an authentication system go work with my Web API?
↧