美文网首页
katana访问令牌验证中间件

katana访问令牌验证中间件

作者: 灭蒙鸟 | 来源:发表于2017-02-25 18:14 被阅读131次

    layout: docs-default

    The Katana 访问令牌验证中间件

    在WebAPI中使用IdentityServer的访问令牌很简单,只需要简单的使用令牌验证中间件到katana管道并把URL设置到IdentityServer,所有的配置和验证工作,令牌验证中间件会自动完成。

    这个中间件可以从这里下载: nuget
    source code.

    高层功能:

    • 支持验证JWT和参考令牌
    • 支持验证作用域
    • 内置的可配置的内存缓存来参考令牌验证结果。
    • 缓存实现可以被替换
      典型的用户场景是,我们提供URL和API的作用域名字给IdentityServer:
    public class Startup
    {
        public void Configuration(IAppBuilder app)
        {
            // turn off any default mapping on the JWT handler
            JwtSecurityTokenHandler.InboundClaimTypeMap = new Dictionary<string, string>();
    
            app.UseIdentityServerBearerTokenAuthentication(new IdentityServerBearerTokenAuthenticationOptions
                {
                    Authority = "https://localhost:44333/core",
                    RequiredScopes = new[] { "api1" }
                });
    
            app.UseWebApi(WebApiConfig.Register());
        }
    }
    

    中间件首先检查令牌--如果是一个JWT,那么在本地进行验证(使用发布者的名字和来自发现文档的密钥信息)。如果是一个参考令牌,中间件会使用IdentityServer上的访问令牌验证 endpoint
    (或者凭据配置的 introspection endpoint ).

    相关文章

      网友评论

          本文标题:katana访问令牌验证中间件

          本文链接:https://www.haomeiwen.com/subject/rxlvyttx.html