fusenapi/utils/curl/http_curl.go

35 lines
779 B
Go
Raw Normal View History

2023-08-09 10:09:16 +00:00
package curl
import (
"errors"
2023-08-09 11:34:11 +00:00
"io"
2023-08-09 10:09:16 +00:00
"net/http"
"strings"
"time"
)
// 接口请求
2023-08-09 11:34:11 +00:00
func ApiCall(url, method string, header map[string]string, body io.Reader, timeOut time.Duration) (rsp *http.Response, err error) {
2023-08-09 10:09:16 +00:00
method = strings.ToUpper(method)
if method != "GET" && method != "POST" && method != "PUT" && method != "DELETE" {
return nil, errors.New("invalid http method")
}
if url == "" {
return nil, errors.New("request url can`t be empty")
}
client := &http.Client{}
if timeOut <= 0 {
client.Timeout = time.Second * 15
} else {
client.Timeout = timeOut
}
2023-08-09 11:34:11 +00:00
requestHandle, err := http.NewRequest(method, url, body)
2023-08-09 10:09:16 +00:00
if err != nil {
return nil, err
}
for k, v := range header {
requestHandle.Header.Set(k, v)
}
return client.Do(requestHandle)
}