Authentication

In order to authenticate Routes and subsequently use any of Ocelot’s claims based features such as authorization or modifying the request with values from the token, users must register authentication services in their Startup.cs as usual but they provide a scheme (authentication provider key) with each registration e.g.

public void ConfigureServices(IServiceCollection services)
{
    const string AuthenticationProviderKey = "MyKey";
    services
        .AddAuthentication()
        .AddJwtBearer(AuthenticationProviderKey, options =>
        {
            // Custom Authentication setup via options initialization
        });
}

In this example MyKey is the scheme that this provider has been registered with. We then map this to a Route in the configuration using the following AuthenticationOptions properties:

Single Key aka Authentication Scheme [1]

Property: AuthenticationOptions.AuthenticationProviderKey

We map authentication provider to a Route in the configuration e.g.

"AuthenticationOptions": {
  "AuthenticationProviderKey": "MyKey",
  "AllowedScopes": []
}

When Ocelot runs it will look at this Routes AuthenticationProviderKey and check that there is an authentication provider registered with the given key. If there isn’t then Ocelot will not start up. If there is then the Route will use that provider when it executes.

If a Route is authenticated, Ocelot will invoke whatever scheme is associated with it while executing the authentication middleware. If the request fails authentication, Ocelot returns a HTTP status code 401 Unauthorized.

Multiple Authentication Schemes [2]

Property: AuthenticationOptions.AuthenticationProviderKeys

In real world of ASP.NET, apps may need to support multiple types of authentication by single Ocelot app instance. To register multiple authentication schemes (authentication provider keys) for each appropriate authentication provider, use and develop this abstract configuration of two or more schemes:

public void ConfigureServices(IServiceCollection services)
{
    const string DefaultScheme = JwtBearerDefaults.AuthenticationScheme; // Bearer
    services.AddAuthentication()
        .AddJwtBearer(DefaultScheme, options => { /* JWT setup */ })
        // AddJwtBearer, AddCookie, AddIdentityServerAuthentication etc.
        .AddMyProvider("MyKey", options => { /* Custom auth setup */ });
}

In this example, the MyKey and Bearer schemes represent the keys with which these providers were registered. We then map these schemes to a Route in the configuration as shown below.

"AuthenticationOptions": {
  "AuthenticationProviderKeys": [ "Bearer", "MyKey" ] // The order matters!
  "AllowedScopes": []
}

Afterward, Ocelot applies all steps that are specified for AuthenticationProviderKey as Single Key aka Authentication Scheme 1.

Note that the order of the keys in an array definition does matter! We use a “First One Wins” authentication strategy.

Finally, we would say that registering providers, initializing options, forwarding authentication artifacts can be a “real” coding challenge. If you’re stuck or don’t know what to do, just find inspiration in our acceptance tests (currently for Identity Server 4 only) [3].

JWT Tokens

If you want to authenticate using JWT tokens maybe from a provider like Auth0, you can register your authentication middleware as normal e.g.

public void ConfigureServices(IServiceCollection services)
{
    var authenticationProviderKey = "MyKey";
    services
        .AddAuthentication()
        .AddJwtBearer(authenticationProviderKey, options =>
        {
            options.Authority = "test";
            options.Audience = "test";
        });
    services.AddOcelot();
}

Then map the authentication provider key to a Route in your configuration e.g.

"AuthenticationOptions": {
  "AuthenticationProviderKeys": [ "MyKey" ],
  "AllowedScopes": []
}

Docs

Identity Server Bearer Tokens

In order to use IdentityServer bearer tokens, register your IdentityServer services as usual in ConfigureServices with a scheme (key). If you don’t understand how to do this, please consult the IdentityServer documentation.

public void ConfigureServices(IServiceCollection services)
{
    var authenticationProviderKey = "MyKey";
    Action<JwtBearerOptions> options = (opt) =>
    {
        opt.Authority = "https://whereyouridentityserverlives.com";
        // ...
    };
    services
        .AddAuthentication()
        .AddJwtBearer(authenticationProviderKey, options);
    services.AddOcelot();
}

Then map the authentication provider key to a Route in your configuration e.g.

"AuthenticationOptions": {
  "AuthenticationProviderKeys": [ "MyKey" ],
  "AllowedScopes": []
}

Auth0 by Okta

Yet another identity provider by Okta, see Auth0 Developer Resources.

Add the following to your startup Configure method:

app.UseAuthentication()
    .UseOcelot().Wait();

Add the following, at minimum, to your startup ConfigureServices method:

services
    .AddAuthentication()
    .AddJwtBearer(oktaProviderKey, options =>
    {
        options.Audience = configuration["Authentication:Okta:Audience"]; // Okta Authorization server Audience
        options.Authority = configuration["Authentication:Okta:Server"]; // Okta Authorization Issuer URI URL e.g. https://{subdomain}.okta.com/oauth2/{authidentifier}
    });
services.AddOcelot(configuration);

Note In order to get Ocelot to view the scope claim from Okta properly, you have to add the following to map the default Okta "scp" claim to "scope":

// Map Okta "scp" to "scope" claims instead of http://schemas.microsoft.com/identity/claims/scope to allow Ocelot to read/verify them
JwtSecurityTokenHandler.DefaultInboundClaimTypeMap.Remove("scp");
JwtSecurityTokenHandler.DefaultInboundClaimTypeMap.Add("scp", "scope");

Issue 446 contains some code and examples that might help with Okta integration.

Allowed Scopes

If you add scopes to AllowedScopes, Ocelot will get all the user claims (from the token) of the type scope and make sure that the user has at least one of the scopes in the list.

This is a way to restrict access to a Route on a per scope basis.

Future

We invite you to add more examples, if you have integrated with other identity providers and the integration solution is working. Please, open Show and tell discussion in the repository.