package main
import (
"fmt"
"io/ioutil"
"net/http"
)
// 简单直接的GET请求
func httpGet() {
// func Get(url string) (resp *Response, err error)
resp, err := http.Get("http://www.baidu.com")
if err != nil {
// handle error
panic(err)
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
// handle error
}
fmt.Println(string(body))
}
// POST请求 -- 使用http.Post()方法
func httpPost() {
// func Post(url string, bodyType string, body io.Reader) (resp *Response, err error)
resp, err := http.Post("http://www.baidu.com",
"application/x-www-form-urlencoded",
strings.NewReader("name=yjb&age=99"))
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参数无法传递。
// POST请求 -- 使用http.PostForm()方法
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))
}
// 复杂的请求(设置头参数、cookie之类的数据),可以使用http.Client的Do()方法
func httpDo() {
client := &http.Client{}
req, err := http.NewRequest("POST", "http://www.baidu.com", strings.NewReader("name=yjb"))
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))
}
golang语言中发起http请求
最新推荐文章于 2024-09-03 09:35:22 发布