文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

聊聊Ocelot网关使用IdentityServer4认证

2024-12-03 09:13

关注

本文转载自微信公众号「UP技术控」,作者conan5566 。转载本文请联系UP技术控公众号。 

概述

Ocelot是一个用.NET Core实现的开源API网关技术。IdentityServer4是一个基于OpenID Connect和OAuth2.0的针对ASP.NET Core的框架,以中间件的形式存在。OAuth是一种授权机制。系统产生一个短期的token,用来代替密码,供第三方应用使用。

下面来看下如何实现Ocelot基于IdentityServer4统一认证。

主要代码实现

1、新建认证项目,nuget安装id4

2、appsettings.json 配置

  1.   "Logging": { 
  2.     "LogLevel": { 
  3.       "Default""Warning" 
  4.     } 
  5.   }, 
  6.   "SSOConfig": { 
  7.     "ApiResources": [ 
  8.       { 
  9.         "Name""testapi"
  10.         "DisplayName""testapiname" 
  11.       } 
  12.     ], 
  13.     "Clients": [ 
  14.       { 
  15.         "ClientId""a"
  16.         "ClientSecrets": [ "aa" ], 
  17.         "AllowedGrantTypes""ClientCredentials"
  18.         "AllowedScopes": [ "testapi" ] 
  19.       } 
  20.     ] 
  21.   }, 
  22.   "AllowedHosts""*" 
  1. public static IEnumerable GetApiResources(IConfigurationSection section
  2.         { 
  3.             List resource = new List(); 
  4.             if (section != null
  5.             { 
  6.                 List configs = new List(); 
  7.                 section.Bind("ApiResources", configs); 
  8.                 foreach (var config in configs) 
  9.                 { 
  10.                     resource.Add(new ApiResource(config.Name, config.DisplayName)); 
  11.                 } 
  12.             } 
  13.             return resource.ToArray(); 
  14.         } 
  15.  
  16.         ///  
  17.         /// 定义受信任的客户端 Client 
  18.         ///  
  19.         /// <returns>returns
  20.         public static IEnumerable GetClients(IConfigurationSection section
  21.         { 
  22.             List clients = new List(); 
  23.             if (section != null
  24.             { 
  25.                 List configs = new List(); 
  26.                 section.Bind("Clients", configs); 
  27.                 foreach (var config in configs) 
  28.                 { 
  29.                     Client client = new Client(); 
  30.                     client.ClientId = config.ClientId; 
  31.                     List clientSecrets = new List(); 
  32.                     foreach (var secret in config.ClientSecrets) 
  33.                     { 
  34.                         clientSecrets.Add(new Secret(secret.Sha256())); 
  35.                     } 
  36.                     client.ClientSecrets = clientSecrets.ToArray(); 
  37.                     GrantTypes grantTypes = new GrantTypes(); 
  38.                     var allowedGrantTypes = grantTypes.GetType().GetProperty(config.AllowedGrantTypes); 
  39.                     client.AllowedGrantTypes = allowedGrantTypes == null ? 
  40.  GrantTypes.ClientCredentials : (ICollection)allowedGrantTypes.GetValue(grantTypes, null); 
  41.                     client.AllowedScopes = config.AllowedScopes.ToArray(); 
  42.                     clients.Add(client); 
  43.                 } 
  44.             } 
  45.             return clients.ToArray(); 
  46.         } 

3、Startup 配置

  1. public void ConfigureServices(IServiceCollection services) 
  2.         { 
  3.             var section = Configuration.GetSection("SSOConfig"); 
  4.             services.AddIdentityServer() 
  5.          .AddDeveloperSigningCredential() 
  6.          .AddInMemoryApiResources(SSOConfig.GetApiResources(section)) 
  7.          .AddInMemoryClients(SSOConfig.GetClients(section)); 
  8.             services.AddControllers().SetCompatibilityVersion(CompatibilityVersion.Latest); 
  9.         } 
  10.  
  11.         // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. 
  12.         public void Configure(IApplicationBuilder app, IWebHostEnvironment env) 
  13.         { 
  14.             if (env.IsDevelopment()) 
  15.             { 
  16.                 app.UseDeveloperExceptionPage(); 
  17.             } 
  18.  
  19.             app.UseRouting(); 
  20.  
  21.             //  app.UseAuthorization(); 
  22.             app.UseIdentityServer(); 
  23.  
  24.             app.UseEndpoints(endpoints => 
  25.             { 
  26.                 endpoints.MapControllers(); 
  27.             }); 
  28.         } 

4、网关项目配置

  1.  
  2.     "IdentityServer4.AccessTokenValidation" Version="3.0.1" /> 
  3.     "Ocelot" Version="14.0.3" /> 
  4.    
  1.       "DownstreamPathTemplate""/connect/token"
  2.       "DownstreamScheme""http"
  3.       "DownstreamHostAndPorts": [ 
  4.         { 
  5.           "Host""localhost"
  6.           "Port": 5002 
  7.         } 
  8.       ], 
  9.       "UpstreamPathTemplate""/token"
  10.       "UpstreamHttpMethod": [ "Post" ], 
  11.       "Priority": 2 
  12.     }, 
  1. var identityBuilder = services.AddAuthentication(); 
  2.             IdentityServerConfig identityServerConfig = new IdentityServerConfig(); 
  3.             Configuration.Bind("IdentityServerConfig", identityServerConfig); 
  4.             if (identityServerConfig != null && identityServerConfig.Resources != null
  5.             { 
  6.                 foreach (var resource in identityServerConfig.Resources) 
  7.                 { 
  8.                     identityBuilder.AddIdentityServerAuthentication(resource.Key, options => 
  9.                     { 
  10.                         options.Authority = $"http://{identityServerConfig.IP}:{identityServerConfig.Port}"
  11.                         options.RequireHttpsMetadata = false
  12.                         options.ApiName = resource.Name
  13.                         options.SupportedTokens = SupportedTokens.Both; 
  14.                     }); 
  15.                 } 
  16.             } 
  17.  
  18.             //  services.AddControllers(); 
  19.             services.AddOcelot(Configuration); 

测试

1、没有添加token访问,返回401

2、获取访问的token

3、带上token访问接口

 

 

来源:UP技术控内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯