Lines Matching defs:string
27 func DoSimpleHttpReqRaw(method string, url string, body []byte, header map[string]string) (response *http.Response, err error) {
41 func DoSimpleHttpReq(method string, url string, body []byte, header map[string]string) (ret []byte, err error) {
58 func doSimpleHttpReqImpl(method string, url string, body []byte, header map[string]string) (response *http.Response, err error) {
77 logrus.Errorf("%s %s: code: %d body: %s", method, url, resp.StatusCode, string(data))
78 return nil, fmt.Errorf("%s %s: code: %d body: %s", method, url, resp.StatusCode, string(data))