網路通訊5:執行HTTP的GET/POST請求

尹成發表於2018-11-16

匯入依賴包

import (
	"fmt"
	"net/http"
	"io/ioutil"
	"strings"
)

提交GET請求並獲得返回

func main521() {
	url := "http://www.baidu.com/s?wd=肉"

	resp, err := http.Get(url)
	if err != nil {
		fmt.Println("錯誤")
	}
	defer resp.Body.Close()

	bodyBytes, _ := ioutil.ReadAll(resp.Body) //讀取資訊
	fmt.Println(string(bodyBytes))            //讀取網頁原始碼
}

提交POST請求並獲得返回

func main522() {
	//url := "http://www.baidu.com"
	url := "https://httpbin.org/post?name=張三"

	resp, err := http.Post(
		url,
		"application/x-www-form-urlencoded",
		strings.NewReader("id=nimei"))
	if err != nil {
		fmt.Println("錯誤")
	}
	defer resp.Body.Close()

	body, _ := ioutil.ReadAll(resp.Body) //讀取資訊
	fmt.Println(string(body))            //讀取網頁原始碼

}

學院Go語言視訊主頁
https://edu.csdn.net/lecturer/1928

[清華團隊帶你實戰區塊鏈開發]
(https://ke.qq.com/course/344443?tuin=3d17195d)
掃碼獲取海量視訊及原始碼 QQ群:721929980
在這裡插入圖片描述

相關文章