码迷,mamicode.com
首页 > Web开发 > 详细

GOLang(第二篇 发起一个Http请求)

时间:2017-01-09 18:40:28      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:print   amp   form   color   dal   get   关闭   ams   type   

import (
    "net/http"
    "net/url"
)

//发送一个简单的get请求
func GetRequest {
    //联系使用  make(map[string]string)
    queryData := make(map[string]string)   //创建空间,
    queryData["params"] = c.QueryParam("params")
    u, _ := url.Parse("http://baidu.com/api/member/getUserSafeDevic")
    q := u.Query()
    q.Set("params", queryData["params"])  
    u.RawQuery = q.Encode()
    resp, _ := http.Get(u.String())              //开启一个Get请求注意Get中的参数是 String
    result, _ := ioutil.ReadAll(resp.Body)      //将接口返回的body数据给result
    resp.Body.Close()                                      //关闭请求
    fmt.Printf("%s", resp)                            //打印结果
}


 

//通过http.Client 发送post请求

func PostUserSafeDevice {
    q := url.Values{}
    q.Set("mac", c.QueryParam("mac"))
    q.Set("imei", c.QueryParam("imei"))
    body := ioutil.NopCloser(strings.NewReader(q.Encode()))
    client := &http.Client{}
    req, _ := http.NewRequest("POST", "http://baidu.com/postDevice", body)
    req.Header.Set("Content-Type", "application/x-www-form-urlencoded; param=value")
    resp, _ := client.Do(req)
    defer resp.Body.Close()
    result, _ := ioutil.ReadAll(resp.Body)
    fmt.Printf("%s", result)
}

 

GOLang(第二篇 发起一个Http请求)

标签:print   amp   form   color   dal   get   关闭   ams   type   

原文地址:http://www.cnblogs.com/SkeyJIA/p/6265678.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!