EasyApiProxy.HawkAuth 3.0.1

dotnet add package EasyApiProxy.HawkAuth --version 3.0.1                
NuGet\Install-Package EasyApiProxy.HawkAuth -Version 3.0.1                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EasyApiProxy.HawkAuth" Version="3.0.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasyApiProxy.HawkAuth --version 3.0.1                
#r "nuget: EasyApiProxy.HawkAuth, 3.0.1"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install EasyApiProxy.HawkAuth as a Cake Addin
#addin nuget:?package=EasyApiProxy.HawkAuth&version=3.0.1

// Install EasyApiProxy.HawkAuth as a Cake Tool
#tool nuget:?package=EasyApiProxy.HawkAuth&version=3.0.1                

EasyApiProxy

  • 簡單的 Web Api 代理類別產生
  • 支援Hawk驗證
  • Nuget Package Install
  • 詳細內容
  • 提供 DefaultApi 實作支援 於套件 EasyApiProxy.WebApi
  • 提供 用戶端 Hawk驗證 於套件 EasyApiProxy.HawkAuth

呼叫範例

    // 建立API 代理物件 Factory 必須重複使用 因為其實做包含一個專用的 HttpClient
    // HttpClinet 微軟官方明確的說必須公用 否則回有tcp/ip資源不足的問題
    var factory = new ApiProxyBuilder()
        // 預設的Api Protocol 就是異常錯誤如何封裝的方式
        .UseDefaultApiProtocol("http://localhost:8081/api/Demo")
        .Build<IDemoApi>();

	// 建立代理物件
	var proxy = factory.Create();

    // 呼叫Api
    var ret = await proxy.Api.Login(new Login { Account = "david", Password = "123" });

Api 介面定義

	// support async
    public interface IDemoApi
    {
        Task<AccountInfo> Login(Login req);

        Task Logout(TokenInfo req);

        Task<string> GetEmail(TokenInfo req);

        string GetServerInfo();
    }

後台實作範例

  • 參考套件 EasyApiProxy.WebApi 提供 DefaultApiResult 實作
    /// <summary>
    /// backendapi
    /// </summary>
    [DefaultApiResult]
    public partial class DemoApiController : ApiController, IDemoApi
    {
        [HttpPost]
        public async Task<AccountInfo> Login(Login req)
        {
            await Task.Delay(1000);
            if (req.Account == "david" && req.Password == "123")
            {
                return new AccountInfo { Account = req.Account, Token = "123456789", Expired = DateTime.Now.AddHours(1) };
            }
            throw new NotImplementedException();
        }

        [HttpPost]
        public async Task Logout(TokenInfo req)
        {
            await Task.Delay(1000);
            if (req.Token == "123456789")
                return;
            throw new ApplicationException("The Token Not exits");
        }

        [HttpPost]
        public async Task<string> GetEmail(TokenInfo req)
        {
            await Task.Delay(1000);
            if (req.Token == "123456789")
            {
                return "david@gmail.com";
            }
            throw new ApplicationException("The Token Not exits");
        }

        [HttpPost]
        public string GetServerInfo()
        {
            return "Demo Server";
        }
    }

用戶端啟用HAWK驗證

  • 參考套件 EasyApiProxy.HawkAuth
    // hawk 證書
    var credential = new HawkNet.HawkCredential();
    credential.Id = "API";
    credential.Key = "XXXXXXXX";
    credential.Algorithm = "sha256";

    // proxy factory
    var factory = new ApiProxyBuilder()
        .UseDefaultApiProtocol("http://localhost:8081/api/Demo")
        // 啟用Hawk驗證
        .UseHawkAuthorize(credential)
        .Build<IDemoApi>();

	// 建立代理物件
	var proxy = factory.Create();

    // 呼叫Api
    var ret = await proxy.Api.Login(new Login { Account = "david", Password = "123" });

後台API端啟用HAWK驗證 範例

  • 引用套件 HawkNet.Owin
    public class Startup
    {
        public void Configuration(IAppBuilder app) {

            var apiConfig = new System.Web.Http.HttpConfiguration();

             // use api 預設路由
            apiConfig.Routes.MapHttpRoute(
                name: "DefaultApi",
                routeTemplate: "api/{controller}/{action}/{id}",
                defaults: new { id = RouteParameter.Optional }
            );

            // use hawk auth
            {
                var credential = new HawkCredential();
                credential.Id = "API";
                credential.Key = "XXXXXXXX";
                credential.User = "API";
                credential.Algorithm = "sha256";

                app.UseHawkAuthentication(new HawkAuthenticationOptions
                {
                    Credentials = (id) => Task.FromResult(credential),
                    IncludeServerAuthorization = false,
                    TimeskewInSeconds = 120
                });
            }

            //use webapi
            app.UseWebApi(apiConfig);
        }
    }

     /// <summary>
    /// backendapi
    /// </summary>
    [DefaultApiResult]
    // 要求授權通過
    [Authorize(Users="API")]
    public partial class DemoApiController : ApiController, IDemoApi {
        ...
    }

Product Compatible and additional computed target framework versions.
.NET Framework net451 is compatible.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.1 103 8/27/2024
3.0.0 102 8/27/2024
2.1.0 114 8/14/2024
2.0.0 114 8/12/2024
1.0.9 87 8/8/2024
1.0.8 91 8/8/2024
1.0.6 94 8/7/2024
1.0.5 84 8/6/2024
1.0.4 83 8/6/2024
1.0.1 92 8/6/2024
1.0.0 93 8/6/2024