Authenticating an ASP.NET Core app with OWIN bearer token

I am trying to authenticate an ASP.NET Core web API application with an existing SSO solution developed in ASP.NET Web API 2. The SSO app uses OWIN/ASP.NET Identity 2.0 and authenticates the users by producing a bearer token. The JWT token generation/validation logic of ASP.NET Core is pretty different from the OWIN-based one, and I can't make them fit together.

Up to now I could only find an answer in this thread, but is out-dated and incomplete.

Is there any way to authenticate the users of the ASP.NET Core app's users with the bearer token generated by such an SSO app? A solution with the least modification to the existing OWIN app would be preferable.

链接地址: http://www.djcxy.com/p/3820.html

上一篇: 我该如何做一个最新的远程分支?

下一篇: 使用OWIN载体令牌验证ASP.NET Core应用程序