如何使用 Go 发送 HTTP JSON 请求步骤:创建 http.Client 对象。创建 http.Request 对象,指定 URL 和方法。设置请求头,将 Content-Type 设置为 application/json。将 JSON 数据编码为字节数组。将字节数组设置到请求的 body 中。发送请求并处理响应。
如何使用 Go 发送 HTTP JSON 请求
简介
Go 语言凭借其丰富的 HTTP 库,使发送 JSON 请求变得非常容易。本文将指导你如何使用 net/http
包来发送 HTTP JSON 请求,并提供一个实战案例。
发送 JSON 请求
发送 JSON 请求需要以下步骤:
http.Client
对象。http.Request
对象,指定要发送请求的 URL 和方法。Content-Type
设置为 application/json
。代码示例
import ( "bytes" "encoding/json" "fmt" "io/ioutil" "net/http" ) func main() { // 创建数据 data := map[string]string{"name": "Alice", "age": "25"} // 编码 JSON 数据 jsonBytes, err := json.Marshal(data) if err != nil { fmt.Printf("Error encoding JSON: %v", err) return } // 创建请求 req, err := http.NewRequest("POST", "http://example.com", bytes.NewReader(jsonBytes)) if err != nil { fmt.Printf("Error creating request: %v", err) return } // 设置请求头 req.Header.Set("Content-Type", "application/json") // 发送请求 client := &http.Client{} resp, err := client.Do(req) if err != nil { fmt.Printf("Error sending request: %v", err) return } // 读取响应 defer resp.Body.Close() body, err := ioutil.ReadAll(resp.Body) if err != nil { fmt.Printf("Error reading response: %v", err) return } fmt.Println("Response:", string(body)) }
实战案例
此示例向 API 发送一个 JSON 请求,以创建新用户:
// 创建用户数据 type User struct { Name string `json:"name"` Age int `json:"age"` } user := &User{Name: "Bob", Age: 30} // 编码 JSON 数据 jsonBytes, err := json.Marshal(user) // ... // ... 使用上文中的其余代码发送请求 ...
以上是如何使用 Golang 发送 HTTP JSON 请求?的详细内容。更多信息请关注PHP中文网其他相关文章!