标签: asp.net-core oauth-2.0 jwt identityserver4
我设法从id4服务器发出id和访问令牌,当我想调用api时,将访问令牌添加到授权头中。但我得到No SecurityTokenValidator可用于令牌作为错误。
那我做错了什么?
我正在使用In Memory测试数据和AddDeveloperSigningCredential:
在api方面我得到了这个:
我在api端使用UseJwtBearerAuthentication中间件:
提前致谢。
答案 0 :(得分:0)
我最后解决了这个问题。我将asp.net核心更新到版本2,并在Api项目的Startup类中添加了新的AspNetCore Authentication JwtBearer中间件,现在一切正常。
我将附上我的api项目的Startup类,也许它可以帮助某人。