golang中http请求

栏目: Go · 发布时间: 5年前

var httpSerever *http.Client = &http.Client{}
func HttpRequest(method, url string, headers map[string]string) ([]byte, error) {
    req, err := http.NewRequest(method, url, nil)
    if err != nil {
        return nil, err
    }
    if headers != nil && len(headers) != 0 {
        for k, v := range headers{
            req.Header.Add(k, v)
        }
    }
    respBytes, err := httpDo(req)
    return respBytes, err
}
func httpDo(req *http.Request) ([]byte, error) {
    resp, err := httpSerever.Do(req)
    if err != nil {
        return nil, errors.New("RetryMarkup" + err.Error())
    }
    defer resp.Body.Close()
    if resp.StatusCode != http.StatusOK {
        return nil, fmt.Errorf("RetryMarkup http get error : url=%v , statusCode=%v", req.URL, resp.StatusCode)
    }
    return ioutil.ReadAll(resp.Body)
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Web Operations

Web Operations

John Allspaw、Jesse Robbins / O'Reilly Media / 2010-6-28 / USD 39.99

A web application involves many specialists, but it takes people in web ops to ensure that everything works together throughout an application's lifetime. It's the expertise you need when your start-u......一起来看看 《Web Operations》 这本书的介绍吧!

MD5 加密
MD5 加密

MD5 加密工具

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具