$curl http://192.168.1.99:8089/devices -X GET -H 'Content-Type: application/json' -H 'Accept: application/json' -d '{"nodeName": "192.168.1.111","containerId": "579"}'
{"status":1,"message":"ok","data":{"gpuId":5,"devUUID":"GPU-34dfc5f0-f402-900b-9e86-626a85d69686"}}
package mainimport (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
type DeviceRequest struct {
NodeName string `json:"nodeName"`
ContainerId string `json:"containerId"`
}
type ApiResponse struct {
Status int `json:"status"`
Message string `json:"message"`
Data struct {
GpuId int `json:"gpuId"`
DevUUID string `json:"devUUID"`
} `json:"data"`
}
func main() {
// 创建请求数据
requestData := DeviceRequest{
NodeName: "192.168.1.111",
ContainerId: "d545d2da",
}
// 将请求数据序列化为JSON
jsonData, err := json.Marshal(requestData)
if err != nil {
fmt.Println("Error marshalling request data:", err)
return
}
// 创建HTTP请求
url := "http://192.168.1.99:8089/devices"
req, err := http.NewRequest("GET", url, bytes.NewBuffer(jsonData))
if err != nil {
fmt.Println("Error creating request:", err)
return
}
// 设置请求头
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Accept", "application/json")
// 发送请求
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
fmt.Println("Error sending request:", err)
return
}
defer resp.Body.Close()
// 读取响应数据
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
fmt.Println("Error reading response body:", err)
return
}
// 解析响应数据
var apiResponse ApiResponse
err = json.Unmarshal(body, &apiResponse)
if err != nil {
fmt.Println("Error unmarshalling response body:", err)
return
}
// 打印响应数据
fmt.Printf("%+v\n", apiResponse)
}
GO语言用http包发送带json文本body的GET请求
平沙落雁子2024-07-22 13:56
相关推荐
captain3763 小时前
网络初 识ZzzZZzzzZZZzzzz…3 小时前
K8s---网络:从 Pod 网络模型到 Calico 三种模式国科安芯4 小时前
基于抗辐射MCU的卫星分布式控制系统CANFD总线架构研究春风解人意12 小时前
从零开始学习嵌入式P32----网络基础之TCP云絮.13 小时前
网络原理---- 网络层,数据链路层,应用层Johny_Zhao14 小时前
网络安全等级保护测评实施方案虹科网络安全16 小时前
使用艾体宝 IOTA 10 CORE+ 监控企业网络中的 AI 流量醉颜凉16 小时前
网络安全必学:粘性MAC地址(Sticky MAC)原理与应用全解析广州灵眸科技有限公司17 小时前
从手动三步到上电即连:4G模组systemd开机自连方案埃科光电18 小时前
16K万兆网口彩色线阵相机:四倍带宽 高速真彩检测新方案