加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

golang语言中发起http请求

发布时间:2020-12-16 18:46:01 所属栏目:大数据 来源:网络整理
导读:strong// 简单直接的GET请求/strongfunc httpGet() { resp,err := http.Get("http://www.baidu.com") if err != nil { // handle error } defer resp.Body.Close() body,err := ioutil.ReadAll(resp.Body) if err != nil { // handle error } fmt.Println(st
<strong>// 简单直接的GET请求</strong>
func httpGet() {
    resp,err := http.Get("http://www.baidu.com")
    if err != nil {
        // handle error
    }
 
    defer resp.Body.Close()
    body,err := ioutil.ReadAll(resp.Body)
    if err != nil {
        // handle error
    }
 
    fmt.Println(string(body))
}

<strong>// POST请求 -- 使用http.Post()方法</strong>
func httpPost() {
    resp,err := http.Post("http://www.baidu.com","application/x-www-form-urlencoded",strings.NewReader("name=cjb"))
    if err != nil {
        fmt.Println(err)
    }
 
    defer resp.Body.Close()
    body,err := ioutil.ReadAll(resp.Body)
    if err != nil {
        // handle error
    }
 
    fmt.Println(string(body))
}
Tips:使用这个方法的话,第二个参数要设置成”application/x-www-form-urlencoded”,否则post参数无法传递。

<strong>// POST请求 -- 使用http.PostForm()方法</strong>
func httpPostForm() {
    resp,err := http.PostForm("http://www.baidu.com",url.Values{"key": {"Value"},"id": {"123"}})
 
    if err != nil {
        // handle error
    }
 
    defer resp.Body.Close()
    body,err := ioutil.ReadAll(resp.Body)
    if err != nil {
        // handle error
    }
 
    fmt.Println(string(body))
}

<strong>// 复杂的请求(设置头参数、cookie之类的数据),可以使用http.Client的Do()方法</strong>
func httpDo() {
    client := &http.Client{}
 
    req,err := http.NewRequest("POST","http://www.baidu.com",strings.NewReader("name=cjb"))
    if err != nil {
        // handle error
    }
 
    req.Header.Set("Content-Type","application/x-www-form-urlencoded")
    req.Header.Set("Cookie","name=anny")
 
    resp,err := client.Do(req)
 
    defer resp.Body.Close()
 
    body,err := ioutil.ReadAll(resp.Body)
    if err != nil {
        // handle error
    }
 
    fmt.Println(string(body))
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读