标签: asp.net-identity owin jwt asp.net-identity-2 asp.net-identity-3
我正在使用带有ASP.Net Identity 3.0的MVC 6构建一个网站。但该网站的API是在Identity 2.0中构建的。
要连接Web API,我需要从API获取JWT令牌。
问题在于,Web API中的OAuth提供程序对使用Identity 2.0创建的用户进行身份验证,但不对使用Identity 3.0创建的用户进行身份验证。
似乎两者都使用不同的哈希机制。
有人建议我使用Identity 2.0上下文登录Identity 3.0用户的最佳方式吗?
提前致谢。