websocket 根据提供的 API 文档实现相应的功能思路大概有那几步呢?

2021-10-18 13:39:27 +08:00
 workman2021
### 客户端
```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 的内容和库 然而还是不知道具体实现步骤
新手请教大家实现思路 谢谢
741 次点击
所在节点    问与答
0 条回复

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/808530

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX