Go HTTP Request
本篇文章說明 Http Request 的部分,並將資料讀取成 byte[],後續要轉成 string 或 JSON 都比較方便,使用兩個 package 的部分函式,io/ioutil 和 net/http
Http.Get
1 | resp, err := http.Get("http://example.com/") |
io.ReadAll
1 | body, err := io.ReadAll(resp.Body) |
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.