Documentation ¶
Overview ¶
Package httplib is used as http.Client Usage:
import "github.com/W3-Partha/Beego/client/httplib"
b := httplib.Post("http://beego.me/") b.Param("username","astaxie") b.Param("password","123456") b.PostFile("uploadfile1", "httplib.pdf") b.PostFile("uploadfile2", "httplib.txt") str, err := b.String() if err != nil { t.Fatal(err) } fmt.Println(str) more docs http://beego.me/docs/module/httplib.md
Index ¶
- Variables
- func AddDefaultFilter(fc FilterChain)
- func NewHttpResponseWithJsonBody(data interface{}) *http.Response
- func SetDefaultSetting(setting BeegoHTTPSettings)
- func TimeoutDialer(cTimeout time.Duration, rwTimeout time.Duration) func(net, addr string) (c net.Conn, err error)
- func TimeoutDialerCtx(cTimeout time.Duration, rwTimeout time.Duration) func(ctx context.Context, net, addr string) (c net.Conn, err error)
- type BeegoHTTPRequest
- func (b *BeegoHTTPRequest) AddFilters(fcs ...FilterChain) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) Body(data interface{}) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) Bytes() ([]byte, error)
- func (b *BeegoHTTPRequest) DoRequest() (resp *http.Response, err error)
- func (b *BeegoHTTPRequest) DoRequestWithCtx(ctx context.Context) (resp *http.Response, err error)
- func (b *BeegoHTTPRequest) GetRequest() *http.Request
- func (b *BeegoHTTPRequest) Header(key, value string) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) JSONBody(obj interface{}) (*BeegoHTTPRequest, error)
- func (b *BeegoHTTPRequest) JSONMarshal(obj interface{}) ([]byte, error)
- func (b *BeegoHTTPRequest) Param(key, value string) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) PostFile(formname, filename string) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) Response() (*http.Response, error)
- func (b *BeegoHTTPRequest) Retries(times int) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) RetryDelay(delay time.Duration) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) SetBasicAuth(username, password string) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) SetCheckRedirect(redirect func(req *http.Request, via []*http.Request) error) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) SetCookie(cookie *http.Cookie) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) SetEnableCookie(enable bool) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) SetEscapeHTML(isEscape bool) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) SetFilters(fcs ...FilterChain) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) SetHost(host string) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) SetProtocolVersion(vers string) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) SetProxy(proxy func(*http.Request) (*url.URL, error)) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) SetTLSClientConfig(config *tls.Config) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) SetTimeout(connectTimeout, readWriteTimeout time.Duration) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) SetTransport(transport http.RoundTripper) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) SetUserAgent(useragent string) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) Setting(setting BeegoHTTPSettings) *BeegoHTTPRequest
- func (b *BeegoHTTPRequest) String() (string, error)
- func (b *BeegoHTTPRequest) ToFile(filename string) error
- func (b *BeegoHTTPRequest) ToJSON(v interface{}) error
- func (b *BeegoHTTPRequest) ToValue(value interface{}) error
- func (b *BeegoHTTPRequest) ToXML(v interface{}) error
- func (b *BeegoHTTPRequest) ToYAML(v interface{}) error
- func (b *BeegoHTTPRequest) XMLBody(obj interface{}) (*BeegoHTTPRequest, error)
- func (b *BeegoHTTPRequest) YAMLBody(obj interface{}) (*BeegoHTTPRequest, error)
- type BeegoHTTPRequestOption
- func WithBasicAuth(basicAuth func() (string, string)) BeegoHTTPRequestOption
- func WithContentType(contentType string) BeegoHTTPRequestOption
- func WithCookie(cookie *http.Cookie) BeegoHTTPRequestOption
- func WithFilters(fcs ...FilterChain) BeegoHTTPRequestOption
- func WithHeader(key, value string) BeegoHTTPRequestOption
- func WithParam(key, value string) BeegoHTTPRequestOption
- func WithRetry(times int, delay time.Duration) BeegoHTTPRequestOption
- func WithTimeout(connectTimeout, readWriteTimeout time.Duration) BeegoHTTPRequestOption
- func WithTokenFactory(tokenFactory func() string) BeegoHTTPRequestOption
- type BeegoHTTPSettings
- type Client
- func (c *Client) Delete(value interface{}, path string, opts ...BeegoHTTPRequestOption) error
- func (c *Client) Get(value interface{}, path string, opts ...BeegoHTTPRequestOption) error
- func (c *Client) Head(value interface{}, path string, opts ...BeegoHTTPRequestOption) error
- func (c *Client) Post(value interface{}, path string, body interface{}, ...) error
- func (c *Client) Put(value interface{}, path string, body interface{}, ...) error
- type ClientOption
- func WithCheckRedirect(redirect func(req *http.Request, via []*http.Request) error) ClientOption
- func WithEnableCookie(enable bool) ClientOption
- func WithEnableGzip(enable bool) ClientOption
- func WithHTTPSetting(setting BeegoHTTPSettings) ClientOption
- func WithProxy(proxy func(*http.Request) (*url.URL, error)) ClientOption
- func WithTLSClientConfig(config *tls.Config) ClientOption
- func WithTransport(transport http.RoundTripper) ClientOption
- func WithUserAgent(userAgent string) ClientOption
- type Filter
- type FilterChain
- type HTTPBodyCarrier
- type HTTPBytesCarrier
- type HTTPHeadersCarrier
- type HTTPResponseCarrier
- type HTTPStatusCarrier
Constants ¶
This section is empty.
Variables ¶
var CloseFileFailed = berror.DefineCode(5001004, moduleName, "CloseFileFailed", `
After handling files, Beego try to close file but failed. Usually it was caused by bad file descriptor.
`)
var CopyFileFailed = berror.DefineCode(5001003, moduleName, "CopyFileFailed", `
When we try to read file content and then copy it to another writer, and failed.
1. Unexpected EOF;
2. Bad file descriptor;
3. Write conflict;
Please check your file content, and confirm that file is not processed by other process (or by user manually).
`)
var CreateFileIfNotExistFailed = berror.DefineCode(5001007, moduleName, "CreateFileIfNotExist", `
Beego want to create file if not exist and failed.
In most cases, it means that Beego doesn't have the privilege to create this file.
Please change file mode to ensure that Beego is able to create files on specific directory.
Or you can run Beego with higher authority.
In some cases, you pass invalid filename. Make sure that the file name is valid on your system.
`)
var CreateFormFileFailed = berror.DefineCode(5001001, moduleName, "CreateFormFileFailed", `
In normal case than handling files with BeegoRequest, you should not see this error code.
Unexpected EOF, invalid characters, bad file descriptor may cause this error.
`)
var InvalidJSONBody = berror.DefineCode(4001006, moduleName, "InvalidJSONBody", `
You pass invalid data which could not be converted to JSON documents. In general, if you pass structure, it works well.
Sometimes you got JSON document and you want to make it as request body. So you call JSONBody.
If you do this, you got this code. Instead, you should call Header to set Content-type and call Body to set body data.
`)
var InvalidUrl = berror.DefineCode(4001001, moduleName, "InvalidUrl", `
You pass a invalid url to httplib module. Please check your url, be careful about special character.
`)
var InvalidUrlProtocolVersion = berror.DefineCode(4001002, moduleName, "InvalidUrlProtocolVersion", `
You pass a invalid protocol version. In practice, we use HTTP/1.0, HTTP/1.1, HTTP/1.2
But something like HTTP/3.2 is valid for client, and the major version is 3, minor version is 2.
but you must confirm that server support those abnormal protocol version.
`)
var InvalidXMLBody = berror.DefineCode(4001004, moduleName, "InvalidXMLBody", `
You pass invalid data which could not be converted to XML documents. In general, if you pass structure, it works well.
Sometimes you got XML document and you want to make it as request body. So you call XMLBody.
If you do this, you got this code. Instead, you should call Header to set Content-type and call Body to set body data.
`)
var InvalidYAMLBody = berror.DefineCode(4001005, moduleName, "InvalidYAMLBody", `
You pass invalid data which could not be converted to YAML documents. In general, if you pass structure, it works well.
Sometimes you got YAML document and you want to make it as request body. So you call YAMLBody.
If you do this, you got this code. Instead, you should call Header to set Content-type and call Body to set body data.
`)
var ReadFileFailed = berror.DefineCode(5001002, moduleName, "ReadFileFailed", `
There are several cases that cause this error:
1. file not found. Please check the file name;
2. file not found, but file name is correct. If you use relative file path, it's very possible for you to see this code.
make sure that this file is in correct directory which Beego looks for;
3. Beego don't have the privilege to read this file, please change file mode;
`)
var ReadGzipBodyFailed = berror.DefineCode(5001006, moduleName, "BuildGzipReaderFailed", `
Beego parse gzip-encode body failed. Usually Beego got invalid response.
Please confirm that server returns gzip data.
`)
var SendRequestFailed = berror.DefineCode(5001005, moduleName, "SendRequestRetryExhausted", `
Beego send HTTP request, but it failed.
If you config retry times, it means that Beego had retried and failed.
When you got this error, there are vary kind of reason:
1. Network unstable and timeout. In this case, sometimes server has received the request.
2. Server error. Make sure that server works well.
3. The request is invalid, which means that you pass some invalid parameter.
`)
var UnmarshalJSONResponseToObjectFailed = berror.DefineCode(5001008, moduleName,
"UnmarshalResponseToObjectFailed", `
Beego trying to unmarshal response's body to structure but failed.
Make sure that:
1. You pass valid structure pointer to the function;
2. The body is valid json document
`)
var UnmarshalResponseToObjectFailed = berror.DefineCode(5001011, moduleName,
"UnmarshalResponseToObjectFailed", `
Beego trying to unmarshal response's body to structure but failed.
There are several cases that cause this error:
1. You pass valid structure pointer to the function;
2. The body is valid json, Yaml or XML document
`)
var UnmarshalXMLResponseToObjectFailed = berror.DefineCode(5001009, moduleName,
"UnmarshalResponseToObjectFailed", `
Beego trying to unmarshal response's body to structure but failed.
Make sure that:
1. You pass valid structure pointer to the function;
2. The body is valid XML document
`)
var UnmarshalYAMLResponseToObjectFailed = berror.DefineCode(5001010, moduleName,
"UnmarshalResponseToObjectFailed", `
Beego trying to unmarshal response's body to structure but failed.
Make sure that:
1. You pass valid structure pointer to the function;
2. The body is valid YAML document
`)
var UnsupportedBodyType = berror.DefineCode(4001003, moduleName, "UnsupportedBodyType", `
You use a invalid data as request body.
For now, we only support type string and byte[].
`)
Functions ¶
func AddDefaultFilter ¶
func AddDefaultFilter(fc FilterChain)
AddDefaultFilter add a new filter into defaultSetting Be careful about using this method if you invoke SetDefaultSetting somewhere
func NewHttpResponseWithJsonBody ¶
NewHttpResponseWithJsonBody will try to convert the data to json format usually you only use this when you want to mock http Response
func SetDefaultSetting ¶
func SetDefaultSetting(setting BeegoHTTPSettings)
SetDefaultSetting overwrites default settings Keep in mind that when you invoke the SetDefaultSetting some methods invoked before SetDefaultSetting
func TimeoutDialer ¶
func TimeoutDialer(cTimeout time.Duration, rwTimeout time.Duration) func(net, addr string) (c net.Conn, err error)
TimeoutDialer returns functions of connection dialer with timeout settings for http.Transport Dial field. Deprecated we will move this at the end of 2021 please use TimeoutDialerCtx
Types ¶
type BeegoHTTPRequest ¶
type BeegoHTTPRequest struct {
// contains filtered or unexported fields
}
BeegoHTTPRequest provides more useful methods than http.Request for requesting a url.
func Delete ¶
func Delete(url string) *BeegoHTTPRequest
Delete returns *BeegoHttpRequest DELETE method.
func Head ¶
func Head(url string) *BeegoHTTPRequest
Head returns *BeegoHttpRequest with HEAD method.
func NewBeegoRequest ¶
func NewBeegoRequest(rawurl, method string) *BeegoHTTPRequest
NewBeegoRequest returns *BeegoHttpRequest with specific method TODO add error as return value I think if we don't return error users are hard to check whether we create Beego request successfully
func Post ¶
func Post(url string) *BeegoHTTPRequest
Post returns *BeegoHttpRequest with POST method.
func (*BeegoHTTPRequest) AddFilters ¶
func (b *BeegoHTTPRequest) AddFilters(fcs ...FilterChain) *BeegoHTTPRequest
AddFilters adds filter
func (*BeegoHTTPRequest) Body ¶
func (b *BeegoHTTPRequest) Body(data interface{}) *BeegoHTTPRequest
Body adds request raw body. Supports string and []byte. TODO return error if data is invalid
func (*BeegoHTTPRequest) Bytes ¶
func (b *BeegoHTTPRequest) Bytes() ([]byte, error)
Bytes returns the body []byte in response. Calls Response inner.
func (*BeegoHTTPRequest) DoRequest ¶
func (b *BeegoHTTPRequest) DoRequest() (resp *http.Response, err error)
DoRequest executes client.Do
func (*BeegoHTTPRequest) DoRequestWithCtx ¶
func (*BeegoHTTPRequest) GetRequest ¶
func (b *BeegoHTTPRequest) GetRequest() *http.Request
GetRequest returns the request object
func (*BeegoHTTPRequest) Header ¶
func (b *BeegoHTTPRequest) Header(key, value string) *BeegoHTTPRequest
Header adds header item string in request.
func (*BeegoHTTPRequest) JSONBody ¶
func (b *BeegoHTTPRequest) JSONBody(obj interface{}) (*BeegoHTTPRequest, error)
JSONBody adds the request raw body encoded in JSON.
func (*BeegoHTTPRequest) JSONMarshal ¶
func (b *BeegoHTTPRequest) JSONMarshal(obj interface{}) ([]byte, error)
func (*BeegoHTTPRequest) Param ¶
func (b *BeegoHTTPRequest) Param(key, value string) *BeegoHTTPRequest
Param adds query param in to request. params build query string as ?key1=value1&key2=value2...
func (*BeegoHTTPRequest) PostFile ¶
func (b *BeegoHTTPRequest) PostFile(formname, filename string) *BeegoHTTPRequest
PostFile adds a post file to the request
func (*BeegoHTTPRequest) Response ¶
func (b *BeegoHTTPRequest) Response() (*http.Response, error)
Response executes request client gets response manually.
func (*BeegoHTTPRequest) Retries ¶
func (b *BeegoHTTPRequest) Retries(times int) *BeegoHTTPRequest
Retries sets Retries times. default is 0 (never retry) -1 retry indefinitely (forever) Other numbers specify the exact retry amount
func (*BeegoHTTPRequest) RetryDelay ¶
func (b *BeegoHTTPRequest) RetryDelay(delay time.Duration) *BeegoHTTPRequest
RetryDelay sets the time to sleep between reconnection attempts
func (*BeegoHTTPRequest) SetBasicAuth ¶
func (b *BeegoHTTPRequest) SetBasicAuth(username, password string) *BeegoHTTPRequest
SetBasicAuth sets the request's Authorization header to use HTTP Basic Authentication with the provided username and password.
func (*BeegoHTTPRequest) SetCheckRedirect ¶
func (b *BeegoHTTPRequest) SetCheckRedirect(redirect func(req *http.Request, via []*http.Request) error) *BeegoHTTPRequest
SetCheckRedirect specifies the policy for handling redirects.
If CheckRedirect is nil, the Client uses its default policy, which is to stop after 10 consecutive requests.
func (*BeegoHTTPRequest) SetCookie ¶
func (b *BeegoHTTPRequest) SetCookie(cookie *http.Cookie) *BeegoHTTPRequest
SetCookie adds a cookie to the request.
func (*BeegoHTTPRequest) SetEnableCookie ¶
func (b *BeegoHTTPRequest) SetEnableCookie(enable bool) *BeegoHTTPRequest
SetEnableCookie sets enable/disable cookiejar
func (*BeegoHTTPRequest) SetEscapeHTML ¶
func (b *BeegoHTTPRequest) SetEscapeHTML(isEscape bool) *BeegoHTTPRequest
SetEscapeHTML is used to set the flag whether escape HTML special characters during processing
func (*BeegoHTTPRequest) SetFilters ¶
func (b *BeegoHTTPRequest) SetFilters(fcs ...FilterChain) *BeegoHTTPRequest
SetFilters will use the filter as the invocation filters
func (*BeegoHTTPRequest) SetHost ¶
func (b *BeegoHTTPRequest) SetHost(host string) *BeegoHTTPRequest
SetHost set the request host
func (*BeegoHTTPRequest) SetProtocolVersion ¶
func (b *BeegoHTTPRequest) SetProtocolVersion(vers string) *BeegoHTTPRequest
SetProtocolVersion sets the protocol version for incoming requests. Client requests always use HTTP/1.1
func (*BeegoHTTPRequest) SetProxy ¶
func (b *BeegoHTTPRequest) SetProxy(proxy func(*http.Request) (*url.URL, error)) *BeegoHTTPRequest
SetProxy sets the HTTP proxy example:
func(req *http.Request) (*url.URL, error) { u, _ := url.ParseRequestURI("http://127.0.0.1:8118") return u, nil }
func (*BeegoHTTPRequest) SetTLSClientConfig ¶
func (b *BeegoHTTPRequest) SetTLSClientConfig(config *tls.Config) *BeegoHTTPRequest
SetTLSClientConfig sets TLS connection configuration if visiting HTTPS url.
func (*BeegoHTTPRequest) SetTimeout ¶
func (b *BeegoHTTPRequest) SetTimeout(connectTimeout, readWriteTimeout time.Duration) *BeegoHTTPRequest
SetTimeout sets connect time out and read-write time out for BeegoRequest.
func (*BeegoHTTPRequest) SetTransport ¶
func (b *BeegoHTTPRequest) SetTransport(transport http.RoundTripper) *BeegoHTTPRequest
SetTransport sets the transport field
func (*BeegoHTTPRequest) SetUserAgent ¶
func (b *BeegoHTTPRequest) SetUserAgent(useragent string) *BeegoHTTPRequest
SetUserAgent sets User-Agent header field
func (*BeegoHTTPRequest) Setting ¶
func (b *BeegoHTTPRequest) Setting(setting BeegoHTTPSettings) *BeegoHTTPRequest
Setting changes request settings
func (*BeegoHTTPRequest) String ¶
func (b *BeegoHTTPRequest) String() (string, error)
String returns the body string in response. Calls Response inner.
func (*BeegoHTTPRequest) ToFile ¶
func (b *BeegoHTTPRequest) ToFile(filename string) error
ToFile saves the body data in response to one file. Calls Response inner.
func (*BeegoHTTPRequest) ToJSON ¶
func (b *BeegoHTTPRequest) ToJSON(v interface{}) error
ToJSON returns the map that marshals from the body bytes as json in response. Calls Response inner.
func (*BeegoHTTPRequest) ToValue ¶
func (b *BeegoHTTPRequest) ToValue(value interface{}) error
ToValue attempts to resolve the response body to value using an existing method. Calls Response inner. If response header contain Content-Type, func will call ToJSON\ToXML\ToYAML. Else it will try to parse body as json\yaml\xml, If all attempts fail, an error will be returned
func (*BeegoHTTPRequest) ToXML ¶
func (b *BeegoHTTPRequest) ToXML(v interface{}) error
ToXML returns the map that marshals from the body bytes as xml in response . Calls Response inner.
func (*BeegoHTTPRequest) ToYAML ¶
func (b *BeegoHTTPRequest) ToYAML(v interface{}) error
ToYAML returns the map that marshals from the body bytes as yaml in response . Calls Response inner.
func (*BeegoHTTPRequest) XMLBody ¶
func (b *BeegoHTTPRequest) XMLBody(obj interface{}) (*BeegoHTTPRequest, error)
XMLBody adds the request raw body encoded in XML.
func (*BeegoHTTPRequest) YAMLBody ¶
func (b *BeegoHTTPRequest) YAMLBody(obj interface{}) (*BeegoHTTPRequest, error)
YAMLBody adds the request raw body encoded in YAML.
type BeegoHTTPRequestOption ¶
type BeegoHTTPRequestOption func(request *BeegoHTTPRequest)
func WithBasicAuth ¶
func WithBasicAuth(basicAuth func() (string, string)) BeegoHTTPRequestOption
WithBasicAuth adds a custom function to set basic auth
func WithContentType ¶
func WithContentType(contentType string) BeegoHTTPRequestOption
WithContentType adds ContentType in header
func WithCookie ¶
func WithCookie(cookie *http.Cookie) BeegoHTTPRequestOption
WithCookie adds a cookie to the request.
func WithFilters ¶
func WithFilters(fcs ...FilterChain) BeegoHTTPRequestOption
WithFilters will use the filter as the invocation filters
func WithHeader ¶
func WithHeader(key, value string) BeegoHTTPRequestOption
WithHeader adds header item string in request.
func WithParam ¶
func WithParam(key, value string) BeegoHTTPRequestOption
WithParam adds query param in to request.
func WithRetry ¶
func WithRetry(times int, delay time.Duration) BeegoHTTPRequestOption
WithRetry set retry times and delay for the request default is 0 (never retry) -1 retry indefinitely (forever) Other numbers specify the exact retry amount
func WithTimeout ¶
func WithTimeout(connectTimeout, readWriteTimeout time.Duration) BeegoHTTPRequestOption
WithTimeout sets connect time out and read-write time out for BeegoRequest.
func WithTokenFactory ¶
func WithTokenFactory(tokenFactory func() string) BeegoHTTPRequestOption
Withtokenfactory adds a custom function to set Authorization
type BeegoHTTPSettings ¶
type BeegoHTTPSettings struct { UserAgent string ConnectTimeout time.Duration ReadWriteTimeout time.Duration TLSClientConfig *tls.Config Proxy func(*http.Request) (*url.URL, error) Transport http.RoundTripper CheckRedirect func(req *http.Request, via []*http.Request) error EnableCookie bool Gzip bool Retries int // if set to -1 means will retry forever RetryDelay time.Duration FilterChains []FilterChain EscapeHTML bool // if set to false means will not escape escape HTML special characters during processing, default true }
BeegoHTTPSettings is the http.Client setting
func GetDefaultSetting ¶
func GetDefaultSetting() BeegoHTTPSettings
GetDefaultSetting return current default setting
type Client ¶
type Client struct { Name string Endpoint string CommonOpts []BeegoHTTPRequestOption Setting BeegoHTTPSettings }
Client provides an HTTP client supporting chain call
func NewClient ¶
func NewClient(name string, endpoint string, opts ...ClientOption) (*Client, error)
NewClient return a new http client
func (*Client) Delete ¶
func (c *Client) Delete(value interface{}, path string, opts ...BeegoHTTPRequestOption) error
Delete Send a Delete request and try to give its result value
func (*Client) Get ¶
func (c *Client) Get(value interface{}, path string, opts ...BeegoHTTPRequestOption) error
Get Send a GET request and try to give its result value
func (*Client) Head ¶
func (c *Client) Head(value interface{}, path string, opts ...BeegoHTTPRequestOption) error
Head Send a Head request and try to give its result value
type ClientOption ¶
type ClientOption func(client *Client)
func WithCheckRedirect ¶
WithCheckRedirect will specifies the policy for handling redirects in all subsequent request
func WithEnableCookie ¶
func WithEnableCookie(enable bool) ClientOption
WithEnableCookie will enable cookie in all subsequent request
func WithEnableGzip ¶
func WithEnableGzip(enable bool) ClientOption
WithEnableGzip will enable gzip in all subsequent request
func WithHTTPSetting ¶
func WithHTTPSetting(setting BeegoHTTPSettings) ClientOption
WithHTTPSetting can replace beegoHTTPSeting
func WithTLSClientConfig ¶
func WithTLSClientConfig(config *tls.Config) ClientOption
WithTLSClientConfig will adds tls config in all subsequent request
func WithTransport ¶
func WithTransport(transport http.RoundTripper) ClientOption
WithTransport will set transport field in all subsequent request
func WithUserAgent ¶
func WithUserAgent(userAgent string) ClientOption
WithEnableCookie will adds UA in all subsequent request
type FilterChain ¶
type HTTPBodyCarrier ¶
type HTTPBodyCarrier interface {
SetReader(r io.ReadCloser)
}
HTTPBodyCarrier If value implement HTTPBodyCarrier. http.Response.Body will pass to SetReader
type HTTPBytesCarrier ¶
type HTTPBytesCarrier interface {
SetBytes(bytes []byte)
}
HTTPBytesCarrier If value implement HTTPBytesCarrier. All the byte in http.Response.Body will pass to SetBytes
type HTTPHeadersCarrier ¶
HttpHeaderCarrier If value implement HttpHeaderCarrier. http.Response.Header will pass to SetHeader
type HTTPResponseCarrier ¶
HTTPResponseCarrier If value implement HTTPResponseCarrier. http.Response will pass to SetHTTPResponse
type HTTPStatusCarrier ¶
type HTTPStatusCarrier interface {
SetStatusCode(status int)
}
HTTPStatusCarrier If value implement HTTPStatusCarrier. http.Response.StatusCode will pass to SetStatusCode