EasyApiProxy.WebApi
1.0.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package EasyApiProxy.WebApi --version 1.0.0
NuGet\Install-Package EasyApiProxy.WebApi -Version 1.0.0
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.WebApi" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasyApiProxy.WebApi --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EasyApiProxy.WebApi, 1.0.0"
#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.WebApi as a Cake Addin #addin nuget:?package=EasyApiProxy.WebApi&version=1.0.0 // Install EasyApiProxy.WebApi as a Cake Tool #tool nuget:?package=EasyApiProxy.WebApi&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
EasyApiProxy
- 簡單的 Web Api 代理類別產生
- 支援Hawk驗證
- Nuget Package Install
- 詳細內容
呼叫範例
// 建立API 代理物件 可以公用 也必須公用 因為其實做包含一個專用的 HttpClient
// HttpClinet 微軟官方明確的說必須公用 否則回有tcp/ip資源不足的問題
var api = new ApiProxyBuilder()
// 預設的Api Protocol 就是異常錯誤如何封裝的方式
.UseDefaultApiProtocol("http://localhost:8081/api/Demo")
.Build<IDemoApi>();
// 呼叫Api
var ret = await api.Login(new Login { Account = "david", Password = "123" });
Api 介面定義
public interface IDemoApi
{
Task<AccountInfo> Login(Login req);
Task Logout(TokenInfo req);
Task<string> GetEmail(TokenInfo req);
string GetServerInfo();
[ApiMethod(Name = "RunProc_001")]
Task<string> RunProc(ProcInfo info);
}
後台實作範例
/// <summary>
/// backendapi
/// </summary>
[DefaultApiResult]
[RoutePrefix("api/Demo")]
public partial class DemoApiController : ApiController, IDemoApi
{
[Route("Login"), 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();
}
[Route("Logout"), HttpPost]
public async Task Logout(TokenInfo req)
{
await Task.Delay(1000);
if (req.Token == "123456789")
return;
throw new ApplicationException("The Token Not exits");
}
[Route("GetEmail"), 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");
}
[Route("GetServerInfo"), HttpPost]
public string GetServerInfo()
{
return "Demo Server";
}
}
Product | Versions 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.
-
.NETFramework 4.5.1
- EasyApiProxy (>= 1.0.0)
- Microsoft.AspNet.WebApi.Core (>= 5.2.7)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.