微服務(入門四):identityServer的簡單使用(客戶端授權)

来源:https://www.cnblogs.com/zhengyazhao/archive/2019/04/26/10769723.html
-Advertisement-
Play Games

IdentityServer簡介(摘自Identity官網) IdentityServer是將符合規範的OpenID Connect和OAuth 2.0端點添加到任意ASP.NET核心應用程式的中間件,通常,您構建(或重新使用)一個包含登錄和註銷頁面的應用程式(可能還包括同意,具體取決於您的需要), ...


IdentityServer簡介(摘自Identity官網)

IdentityServer是將符合規範的OpenID Connect和OAuth 2.0端點添加到任意ASP.NET核心應用程式的中間件,通常,您構建(或重新使用)一個包含登錄和註銷頁面的應用程式(可能還包括同意,具體取決於您的需要),IdentityServer中間件向其添加必要的協議頭,以便客戶端應用程式可以使用這些標準協議與之對話。

托管應用程式可以像您希望的那樣複雜,但我們通常建議通過只包含與身份驗證相關的UI來儘可能地保持攻擊面小。

 

 client               :客戶端,從identityServer請求令牌,用戶對用戶身份校驗,客戶端必須先從identityServer中註冊,然後才能請求令牌。

 sources           :每個資源都有自己唯一的名稱,就是文中所定義的api1服務名稱,indentity會驗證判定是否有訪問該資源的許可權。

 access Token  :訪問令牌,由identityServer伺服器簽發的,客戶端使用該令牌進行訪問擁有許可權的api

 

 

OAuth 2.0四種授權模式(GrantType)

  •  客戶端模式(client_credentials)
  •  密碼模式(password)
  •  授權碼模式(authorization_code)
  •  簡化模式(implicit)

作用

  • 單點登錄

        在多個應用程式當中進行統一登錄或者註銷。

  • api訪問控制
    • 為各種類型的客戶端(如伺服器到伺服器、Web應用程式、SPA和本機/移動應用程式)頒發API訪問令牌。
  • 聯盟網關

          支持外部身份提供商,如Azure Active Directory、Google、Facebook等。這將使您的應用程式不瞭解如何連接到這些外部提供商的詳細信息。

開發準備

   開發環境             :vs2019 

   identityServer4:2.4.0

  netcore版本       :2.1

客戶端授權模式介紹

客戶端模式的話是屬於identityServer保護API的最基礎的方案,我們定義個indentityServer服務以及一個需要保護的API服務,

當客戶端直接訪問api的話,由於我們的api服務添加了authorization認證,所以必須要到identityServer放伺服器上拿到訪問令牌,客戶端憑藉該令牌去對應api服務當中獲取想要得到的數據

添加IdentityServer項目

  1.首先添加新項目,創建ASP.NET Core Web 應用程式  創建一個名稱為identityServer4test的項目,選擇項目類型API  項目進行創建。

 

2.從程式包管理器控制台或者ngGet下載IdentityServer4

  2.1 程式包管理器控制台:install-package IdentityServer4

  2.2 NuGet 的話在對應的程式集,選擇nuget輸入IdentityServer4選擇對應的版本進行下載安裝

  

 

 

3.添加Identity Server4 配置

   資源定義可以通過多種方式實現,具體的請查閱官方api文檔:https://identityserver4.readthedocs.io/en/latest/quickstarts/1_client_credentials.html

 註:1.ApiResource("api1","My Api"),其中api1代表你的唯一資源名稱,在 AllowedScopes = { "api1" }當中必須配置上才可以進行訪問

 

using IdentityServer4.Models;
using IdentityServer4.Test;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace IdentityServer4Test.IndntityConfig
{
    public class IdentityServerConfig
    {
        /// <summary>
        /// 添加api資源
        /// </summary>
        /// <returns></returns>
        public static IEnumerable<ApiResource> GetResources()
        {
            return new List<ApiResource>
            {
         
new ApiResource("api1","My Api") }; } /// <summary> /// 添加客戶端,定義一個可以訪問此api的客戶端 /// </summary> /// <returns></returns> public static IEnumerable<Client> GetClients() { return new List<Client> { new Client { /// ClientId = "client", // 沒有交互性用戶,使用 客戶端模式 進行身份驗證。 AllowedGrantTypes = GrantTypes.ClientCredentials, // 用於認證的密碼 ClientSecrets = { new Secret("123454".Sha256()) }, // 客戶端有權訪問的範圍(Scopes) AllowedScopes = { "api1" } } }; } } }

 

4.在startUp當中註入IdentityServer4 服務

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using IdentityServer4.Models;
using IdentityServer4.Test;
using IdentityServer4Test.IndntityConfig;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;

namespace IdentityServer4Test
{
    public class Startup
    {
        public Startup(IConfiguration configuration)
        {
            Configuration = configuration;
        }

        public IConfiguration Configuration { get; }

        // This method gets called by the runtime. Use this method to add services to the container.
        public void ConfigureServices(IServiceCollection services)
        {
            //services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
            // 在DI容器中註入identityServer服務
            services.AddIdentityServer()
         
        .AddInMemoryApiResources(IdentityServerConfig.GetResources())//添加配置的api資源
        .AddInMemoryClients(IdentityServerConfig.GetClients())//添加客戶端,定義一個可以訪問此api的客戶端
            .AddDeveloperSigningCredential();
            

        }
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            //添加identityserver中間件到http管道
            app.UseIdentityServer();
            //app.UseMvc();
        }
    }
}

5.此時啟動程式輸入 http://localhost:3322/.well-known/openid-configuration可以得到如下網站,這是identity Server4 提供的配置文檔

6.用postMan請求獲取access_token

  

標註:body 當中的參數

        grant_type    :對應api AllowedGrantTypes 類型表示授權模式

        client_id        : 對應clentID 

        client_secret: 客戶端秘鑰

       

7.拿到token以後就可以根據token去訪問我們的服務程式,服務程式,首先也是創建一個webApi程式,並且從NuGet下載所需的依賴

  •    IdentityServer4.AccessTokenValidation(程式報管理器的話加上install-package IdentityServer4.AccessTokenValidation)

  7.1 配置authentication,並且添加    app.UseAuthentication();到http管道當中

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;

namespace IndentityServerClientTest
{
    public class Startup
    {
        public Startup(IConfiguration configuration)
        {
            Configuration = configuration;
        }

        public IConfiguration Configuration { get; }

        // This method gets called by the runtime. Use this method to add services to the container.
        public void ConfigureServices(IServiceCollection services)
        {
            services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
             //註入authentication服務
            services.AddAuthentication("Bearer")
            
               .AddIdentityServerAuthentication(options =>
               {
                   options.Authority = "http://localhost:3322";//IdentityServer服務地址
                   options.ApiName = "api1"; //服務的名稱,對應Identity Server當中的Api資源名稱,如果客戶端得到的token可以訪問此api的許可權才可以訪問,否則會報401錯誤
                   options.RequireHttpsMetadata = false;
               });

        }

        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            //添加authentication中間件到http管道
            app.UseAuthentication();
            app.UseMvc();
        }
    }
}

7.2 引用Microsoft.AspNetCore.Authorization;命名空間,添加authorize認證

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;

namespace IndentityServerClientTest.Controllers
{
    [Route("api/[controller]")]
    [ApiController]
    [Authorize]
    public class ValuesController : ControllerBase
    {
        // GET api/values
        [HttpGet]
        public ActionResult<IEnumerable<string>> Get()
        {
            return new string[] { "value1", "value2" };
        }

        // GET api/values/5
        [HttpGet("{id}")]
        public ActionResult<string> Get(int id)
        {
            return "value";
        }

        // POST api/values
        [HttpPost]
        public void Post([FromBody] string value)
        {
        }

        // PUT api/values/5
        [HttpPut("{id}")]
        public void Put(int id, [FromBody] string value)
        {
        }

        // DELETE api/values/5
        [HttpDelete("{id}")]
        public void Delete(int id)
        {
        }

        // DELETE api/values/5
        [Route("send")]
        [HttpGet]
        public string send()
        {
            return "成功了";

        }

    }
}

7.3. 直接訪問的話會報401錯誤

 

7.4 在請求頭當中添加Authorization 參數,參數值為Bearer加上空格 加上咱們剛纔獲取到的access_token 請求成功!~~

 

 

快速入口:微服務(入門一):netcore安裝部署consul

快速入口: 微服務(入門二):netcore通過consul註冊服務

快速入口: 微服務(入門三):netcore ocelot api網關結合consul服務發現

快速入口:微服務(入門四):identityServer的簡單使用(客戶端授權) 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • IdentityServer旨在實現可擴展性,其中一個可擴展點是用於IdentityServer所需數據的存儲機制。本快速入門展示瞭如何配置IdentityServer以使用EntityFramework Core(EF)作為此數據的存儲機制(而不是使用我們迄今為止使用的記憶體中實現)。 註意 除了手 ...
  • 快速入門介紹了使用IdentityServer保護API的最基本方案。 我們將定義一個API和一個想要訪問它的客戶端。 客戶端將通過提供 在IdentityServer請求訪問令牌, 充當客戶端和IdentityServer都知道的秘密,並且它將使用該令牌來訪問API。 9.1設置ASP.NET核心 ...
  • 快速入門提供了各種常見IdentityServer方案的分步說明。他們從基礎到複雜 建議您按順序完成它們。 將IdentityServer添加到ASP\.NET Core應用程式 配置IdentityServer 為各種客戶發放令牌 保護Web應用程式和API 添加對基於EntityFramewor ...
  • 我們對社區貢獻非常開放,但您應該遵循一些指導原則,以便我們可以毫不費力地處理這個問題。 7.1 如何貢獻? 最簡單的方法是打開一個問題並開始討論。然後我們可以決定是否以及如何實現功能或更改。如果您應提交包含更改代碼的pull請求,請從描述開始,僅進行最小的更改並提供涵蓋這些更改的測試。 首先閱讀: ...
  • 我們為IdentityServer提供了多種免費和商業支持和咨詢選項。 5.1 免費支持 免費支持是基於社區的,並使用公共論壇 5.1.1 StackOverflow StackOverflow 社區里日益增多的 IdentityServer 用戶在監視著上面的問題。如果時間允許,我們也會試著儘可能 ...
  • IdentityServer由許多nuget包組成。 4.1 IdentityServer4 "nuget" | "github" 上 包含核心IdentityServer對象模型,服務和中間件。僅包含對記憶體配置和用戶存儲的支持 但您可以通過配置插入對其他存儲的支持。這是其他倉庫和程式包相關的內容。 ...
  • OsharpNS輕量級.net core快速開發框架簡明入門教程 教程目錄 1. 從零開始啟動Osharp 1.1. "使用OsharpNS項目模板創建項目" 1.2. "配置資料庫連接串並啟動項目" 1.3. "OsharpNS.Swagger使用實例(登錄和授權)" 1.4. "Angular6 ...
  • Introduction: 在項目開發中,我們都經常會用到時間戳來進行時間的存儲和傳遞,最常用的Unix時間戳(TimeStamp)是指格林尼治時間1970年1月1日0時(北京時間1970年1月1日8時)起至現在的總秒數(10位)或總毫秒數(13位); Body: 而在C#中.Net框架沒有提供現成 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...