Versions in this module Expand all Collapse all v0 v0.1.0 Sep 14, 2017 Changes in this version + type Request struct + Cookies map[string]string + Headers map[string]string + Method string + PostData map[string]interface{} + Queries map[string]string + Raw *http.Request + Url string + func NewRequest() *Request + func (this *Request) Get() (*Response, error) + func (this *Request) Post() (*Response, error) + func (this *Request) Send(url string, method string) (*Response, error) + func (this *Request) SetCookies(cookies map[string]string) *Request + func (this *Request) SetHeaders(headers map[string]string) *Request + func (this *Request) SetMethod(method string) *Request + func (this *Request) SetPostData(postData map[string]interface{}) *Request + func (this *Request) SetQueries(queries map[string]string) *Request + func (this *Request) SetUrl(url string) *Request + type Response struct + Body string + Headers map[string]string + Raw *http.Response + func NewResponse() *Response + func (this *Response) IsOk() bool