All Projects → IdentityModel → IdentityModel.AspNetCore.OAuth2Introspection

IdentityModel / IdentityModel.AspNetCore.OAuth2Introspection

Licence: Apache-2.0 License
ASP.NET Core authentication handler for OAuth 2.0 token introspection

Programming Languages

C#
18002 projects

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";
    });
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].