这是一个创建于 1117 天前的主题,其中的信息可能已经有所发展或是发生改变。
### 客户端
```golang
// Equipment request
// Device heartbeat, the device sends a heartbeat packet to the server every 30 seconds.
{
"method": "heartBeat",
"params": {
"DeviceId": "ABCDEFG"
},
"req_id": 123
}
```
### 服务器
```golang
//Server response:
{
"method": " heartBeat", // Interface name
"params" : {
"Timestamp" : 123 //If the time needs to be synchronized, please fill it in, if you don’t need it, don’t fill it in, UTC time seconds UINT32
},
"result": 0, // return value, UINT32, 0 means success
"req_id":123 //Transparent ID, UINT32
}
```
现在的需求就是服务器发请求到客户端 客户端返回对应的信息 到服务器
看了一些 golang 相关的 ws 的内容和库 然而还是不知道具体实现步骤
新手请教大家实现思路 谢谢