Go语言学习: http 之 get 请求
基本的 GET 请求使用
安装
- 原生包,不用安装
main.go
最简单的无参数形式
get
请求
package main
import (
"io"
"log"
"net/http"
)
func main() {
apiurl := "https://httpbin.org/get"
response, _ := http.Get(apiurl)
body, _ := io.ReadAll(response.Body)
log.Printf("Response Body: %s", string(body))
}
带参数的 querystring 的情况
-