如何在Linux Shell中读取WebSocket响应

在wss://ws-feed.gdax.com上编写bash脚本以连接到GDAX的Websocket

Feed,但是在我得到curl时似乎不支持此功能

curl "wss://ws-feed.gdax.com"

curl: (1) Protocol "wss" not supported or disabled in libcurl

回答:

好吧,您可以尝试模拟所需的标头以使用curl获得一些响应:

  • https://gist.github.com/htp/fbce19069187187ec1cc486b594104f01d0或
  • Linux Bash:如何以客户端身份打开Websocket连接

另外,还有其他与WebSocket服务器通信的方式,例如

  • https://github.com/websockets/wscat
  • https://github.com/bwasti/webpipe
  • https://github.com/progrium/wssh

以上是 如何在Linux Shell中读取WebSocket响应 的全部内容, 来源链接: utcz.com/qa/432947.html

回到顶部