Identityserver 4 и Ocelot - PullRequest
       97

Identityserver 4 и Ocelot

0 голосов
/ 07 января 2019

Я пытаюсь использовать Ocelot с IS4 следующим https://ocelot.readthedocs.io/en/latest/features/authentication.html

При использовании

public void ConfigureServices(IServiceCollection services)
{
    var authenticationProviderKey = "TestKey";

    services.AddAuthentication()
        .AddJwtBearer(authenticationProviderKey, x =>
        {
        });
}

и использовать «TestKey» в ocelot.json, он выдает ошибку при запуске приложения

Невозможно запустить Ocelot, ошибки: TestKey, AllowedScopes: [] не поддерживается поставщиком аутентификации

Есть идеи, что случилось? Нужно ли мне что-то настраивать в моем приложении IdentityServer?

...