如何在客户端发送和接收 WebSocket 消息?
如何对从客户端发送的消息进行编码以符合最新的 WebSocket 协议< /a>?
成帧和屏蔽似乎是最新版本的问题。生成正确的框架和屏蔽客户端的最简单方法是什么?
How do I encode messages to be sent from the client to comply with the latest WebSocket Protocol?
Framing and masking seem to be the issue with the latest version. What is the easiest way to generate correct framing and masking client side?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的消息全部小于或等于 125 字节,并且您只是从客户端发送(并且从不接收),那么您可以使用非常简单的算法。
以下是如何使用 python 构建要发送的帧:
或者,以下是如何在 C 中执行此操作:
说明:
如果您想超越简单的情况,我建议您查看 部分中的框架图5 规范
If your message are all less than or equal to 125 bytes, and if you are just sending from the client (and never receiving) then you can use a really trivial algorithm.
Here is how you would construct a frame to send using python:
Or alternately, here is how you could do it in C:
Explanation:
If you want to go beyond the trivial case I suggest looking at the framing diagram in section 5 of the spec