Documentation ¶
Index ¶
- type Client
- func (c *Client) Delete(ctx *plugin.Context, url string, body interface{}, headers *map[string]string) (*Result, error)
- func (c *Client) Do(ctx *plugin.Context, method string, url string, body interface{}, ...) (*Result, error)
- func (c *Client) Get(ctx *plugin.Context, url string, headers *map[string]string) (*Result, error)
- func (c *Client) Head(ctx *plugin.Context, url string, headers *map[string]string) (*Result, error)
- func (c *Client) ManualDo(ctx *plugin.Context, method string, url string, body interface{}, ...) (*ManualResult, error)
- func (c *Client) Open(ctx *plugin.Context, url string, headers *map[string]string) (*WS, error)
- func (c *Client) Post(ctx *plugin.Context, url string, body interface{}, headers *map[string]string) (*Result, error)
- func (c *Client) Put(ctx *plugin.Context, url string, body interface{}, headers *map[string]string) (*Result, error)
- func (c *Client) SetBaseURL(url string)
- func (c *Client) SetGlobalHeaders(headers map[string]string)
- type ManualResult
- type Result
- type WS
- func (ws *WS) Close() error
- func (ws *WS) EnableCompression()
- func (ws *WS) Read() (string, error)
- func (ws *WS) ReadBytes() ([]byte, error)
- func (ws *WS) ReadJSON() (interface{}, error)
- func (ws *WS) Write(content string) error
- func (ws *WS) WriteBytes(content []byte) error
- func (ws *WS) WriteJSON(content interface{}) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func NewH2CHTTP ¶
NewH2CHTTP 创建新的H2C客户端 NewH2CHTTP return H2C客户端对象
func NewH2CHTTPWithoutRedirect ¶
NewH2CHTTPWithoutRedirect 创建新的H2C客户端(不自动跟踪301和302跳转) NewH2CHTTPWithoutRedirect return H2C客户端对象
func NewHTTPWithoutRedirect ¶
NewHTTPWithoutRedirect 创建新的HTTP客户端(不自动跟踪301和302跳转) * timeout 请求的超时时间,单位(毫秒) NewHTTPWithoutRedirect return HTTP客户端对象
func (*Client) Delete ¶
func (c *Client) Delete(ctx *plugin.Context, url string, body interface{}, headers *map[string]string) (*Result, error)
Delete 发送DELETE请求
func (*Client) Do ¶
func (c *Client) Do(ctx *plugin.Context, method string, url string, body interface{}, headers *map[string]string) (*Result, error)
Do 发送请求 * method 请求方法,GET、POST等
func (*Client) Get ¶
Get 发送GET请求 * url 以http://或https://开头的URL地址,如果设置了baseURL可以只提供path部分 * headers 传入一个Key-Value对象的HTTP头信息,如果不指定头信息这个参数可以省略不传 * return 返回结果对象,如果返回值是JSON格式,将自动转化为对象否则将字符串放在.result中,如发生错误将抛出异常,返回的对象中还包括:headers、statusCode、statusMessage
func (*Client) ManualDo ¶
func (c *Client) ManualDo(ctx *plugin.Context, method string, url string, body interface{}, headers *map[string]string) (*ManualResult, error)
ManualDo 手动处理请求,需要自行从返回结果中读取数据,可实现SSE客户端 ManualDo return 应答的对象(需手动读取数据并关闭请求)
func (*Client) Post ¶
func (c *Client) Post(ctx *plugin.Context, url string, body interface{}, headers *map[string]string) (*Result, error)
Post 发送POST请求 * body 可以传入任意类型,如果不是字符串或二进制数组时会自动添加application/json头,数据将以json格式发送
func (*Client) Put ¶
func (c *Client) Put(ctx *plugin.Context, url string, body interface{}, headers *map[string]string) (*Result, error)
Put 发送PUT请求
func (*Client) SetBaseURL ¶
SetBaseURL 设置一个URL前缀,后续请求中可以只提供path部分 SetBaseURL url 以http://或https://开头的URL地址
func (*Client) SetGlobalHeaders ¶
SetGlobalHeaders 设置固定的HTTP头部信息,在每个请求中都加入这些HTTP头 SetGlobalHeaders headers 传入一个Key-Value对象的HTTP头信息
type ManualResult ¶ added in v1.0.5
type ManualResult struct { Result // contains filtered or unexported fields }
func (*ManualResult) Close ¶ added in v1.0.5
func (r *ManualResult) Close() error
func (*ManualResult) ReadBytes ¶ added in v1.0.5
func (r *ManualResult) ReadBytes(n int) ([]byte, error)
func (*ManualResult) Save ¶ added in v1.0.5
func (r *ManualResult) Save(filename string) error