我正在尝试按照 https://ocelot.readthedocs.io/en/latest/features/authentication.html将 Ocelot 与 IS4 一起使用
使用时
public void ConfigureServices(IServiceCollection services)
{
var authenticationProviderKey = "TestKey";
services.AddAuthentication()
.AddJwtBearer(authenticationProviderKey, x =>
{
});
}
并在 ocelot.json 中使用“TestKey”,启动应用程序时会抛出错误
无法启动 Ocelot,错误为:TestKey,AllowedScopes:[] is unsupported authentication provider
知道有什么问题吗?我是否需要在我的 IdentityServer 应用程序中特别设置一些东西?