(url string, data url.Values)
| 69 | } |
| 70 | |
| 71 | func (httpClient *HTTPClient) PostForm(url string, data url.Values) (resp *http.Response, err error) { |
| 72 | url, err = httpClient.NormalizeHttpScheme(url) |
| 73 | if err != nil { |
| 74 | return nil, err |
| 75 | } |
| 76 | return httpClient.Client.PostForm(url, data) |
| 77 | } |
| 78 | |
| 79 | func (httpClient *HTTPClient) Head(url string) (resp *http.Response, err error) { |
| 80 | url, err = httpClient.NormalizeHttpScheme(url) |
nothing calls this directly
no test coverage detected