Skip to content
/ rpc Public

RPC for normal HTTP request with a special response Analyser interface.

Notifications You must be signed in to change notification settings

h2object/rpc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

h2object/rpc

RPC for normal HTTP request with a special response Analyser interface. 鉴于各种基于HTTP的Restful服务, 抽象出常用请求接口, 同时提供HTTP响应分析接口, 适配各种不同的Restful应用的响应。

请求接口

当前实现 http 常规请求接口,如下:

  • Get()

  • Delete()

  • Post()

  • Put()

  • Patch()

  • PostJson()

  • PutJson()

  • PatchJson()

  • PostForm()

  • PutForm()

  • PatchForm()

  • PostMultiPartForm()

  • PutMultiPartForm()

  • PatchMultiPartForm()

响应分析

响应分析接口定义如下:

type Analyzer interface {
	//! ret, 响应分析后填充的对象
	//! resp, http response 指针对象
	//! 返回: 失败信息
	Analyse(ret interface{}, resp *http.Response) error
}

h2o 服务响应分析

系统默认实现了 h2o 服务的响应分析

api.dnspod.com API服务响应分析

请参考GoDNSPOD

About

RPC for normal HTTP request with a special response Analyser interface.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages