在使用Go語言進(jìn)行開發(fā)的時(shí)候,有的時(shí)候可能要發(fā)送get或者post請(qǐng)求,下面我對(duì)post和get請(qǐng)求做一下簡(jiǎn)單的介紹:關(guān)于 HTTP 協(xié)議
HTTP(即超文本傳輸協(xié)議)是現(xiàn)代網(wǎng)絡(luò)中最常見和常用的協(xié)議之一,設(shè)計(jì)它的目的是保證客戶機(jī)和服務(wù)器之間的通信。
HTTP 的工作方式是客戶機(jī)與服務(wù)器之間的 “請(qǐng)求-應(yīng)答” 協(xié)議。
客戶端可以是 Web 瀏覽器,服務(wù)器端可以是計(jì)算機(jī)上的某些網(wǎng)絡(luò)應(yīng)用程序。
通常情況下,由瀏覽器向服務(wù)器發(fā)起 HTTP 請(qǐng)求,服務(wù)器向?yàn)g覽器返回響應(yīng)。響應(yīng)包含了請(qǐng)求的狀態(tài)信息以及可能被請(qǐng)求的內(nèi)容。
Go 語言中要請(qǐng)求網(wǎng)頁時(shí),使用net/http包實(shí)現(xiàn)。官方已經(jīng)提供了詳細(xì)的說明,但是比較粗略,我自己做了一些增加。
一般情況下有以下幾種方法可以請(qǐng)求網(wǎng)頁:
Get, Head, Post, 和 PostForm 發(fā)起 HTTP (或 HTTPS) 請(qǐng)求:
GET請(qǐng)求:
GET請(qǐng)求直接將參數(shù)拼接在URL里面,如同下面的示例:
func GetData() {
client := http.Client{}
resp, err := client.Get("http://api.map.baidu.com/place/v2/suggestion?query=廣州市天河區(qū)正佳廣場(chǎng)region=廣州city_limit=trueoutput=jsonak=yX8nC9Qzpckek7lY9gGWmlD4TFcA2tzYx3")
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
fmt.Println(err)
}
fmt.Println(string(body))
}
POST請(qǐng)求
Post相關(guān)的請(qǐng)求有三種,分別是:http.post、http.postForm、http.Do請(qǐng)求。
http.post請(qǐng)求:
func httpPost() {
resp, err := http.Post("http://www.01happy.com/demo/accept.php",
"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))
}
注意:請(qǐng)求里面的第二個(gè)參數(shù)必須帶,否則會(huì)報(bào)錯(cuò)的。
http.postForm:
func PostData() {
//client := http.Client{}
resp, err := http.PostForm("https://www.pgyer.com/apiv2/app/view", url.Values{"appKey": {"62c99290f0cb2c567cb153c1fba75d867e"},
"_api_key": {"584f29517115df2034348b0c06b3dc57"}, "buildKey": {"22d4944d06354c8dcfb16c4285d04e41"}})
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
fmt.Println(err)
}
fmt.Println(string(body))
}
對(duì)于比較復(fù)雜的http請(qǐng)求,我們可以用到http.do的方式進(jìn)行請(qǐng)求
func httpDo() {
client := http.Client{}
req, err := http.NewRequest("POST", "http://www.01happy.com/demo/accept.php", 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))
}
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:- 基于Django URL傳參 FORM表單傳數(shù)據(jù) get post的用法實(shí)例
- Go語言中利用http發(fā)起Get和Post請(qǐng)求的方法示例
- Go語言Web編程實(shí)現(xiàn)Get和Post請(qǐng)求發(fā)送與解析的方法詳解
- Go語言服務(wù)器開發(fā)實(shí)現(xiàn)最簡(jiǎn)單HTTP的GET與POST接口