Skip to content

nick20201/IdentityModel.AspNetCore.OAuth2Introspection

 
 

Repository files navigation

IdentityModel.AspNetCore.OAuth2Introspection

ASP.NET Core 2 authentication handler for OAuth 2.0 token introspection

https://tools.ietf.org/html/rfc7662

Configuration

services.AddAuthentication(OAuth2IntrospectionDefaults.AuthenticationScheme)
    .AddOAuth2Introspection(options =>
    {
        options.Authority = "https://base_address_of_token_service";

        options.ClientId = "client_id_for_introspection_endpoint";
        options.ClientSecret = "client_secret_for_introspection_endpoint";
    });

About

ASP.NET Core 2 authentication handler for OAuth 2.0 token introspection

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%