码迷,mamicode.com
首页 > Windows程序 > 详细

golang 获取api 数据

时间:2017-09-25 09:42:58      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:golang   api   

直接上代码


type ApiRequest interface{}


//参数 e 一个空接口,f http请求连接, p 请求方式 参数为 “POST” 或 “GET”

func FromApiGetData(e *ApiRequest, f *PostUrl, p string) (string, error) {

jsons, errs := json.Marshal(e)

if errs != nil {

fmt.Println(errs.Error())

}

fmt.Println(string(jsons))

req, err := http.NewRequest(p, f.Url, bytes.NewBuffer([]byte(string(jsons))))

req.Header.Set("Content-Type", "application/json")

client := &http.Client{}

resp, err := client.Do(req)

if err != nil {

panic(err)

}

defer resp.Body.Close()

//status := resp.Status

//headers := resp.Header

body, _ := ioutil.ReadAll(resp.Body)

bodys := string(body)

return bodys, nil

}


注:空接口 在main 中定义 例如

type PostConLogin struct {

Email    string `json:"email"`

Password string `json:"password"`

}

m := PostConLogin{Email: "1216562200@qq.com", Password: "123456"}; var v ApiRequest = m


golang 获取api 数据

标签:golang   api   

原文地址:http://bobo123.blog.51cto.com/3133979/1968220

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