最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How can I get data from a websocket url? - Stack Overflow

programmeradmin2浏览0评论

When I connect to a website who uses websockets, I can get the frames with the Google Developer Tools.

Data from the websocket url

So I would like to get the same data but in a program ( JS, C# ) but I actually have no idea how I should do.

I thought about make a http.request with NodeJS but it's not a http url :/ I thought about make a sample JS client but I couldn't get the data because I wasn't able to send the headers with the 'key'.

The headers

So, I really hope you have a way to help me and sorry for my basic English :(

When I connect to a website who uses websockets, I can get the frames with the Google Developer Tools.

Data from the websocket url

So I would like to get the same data but in a program ( JS, C# ) but I actually have no idea how I should do.

I thought about make a http.request with NodeJS but it's not a http url :/ I thought about make a sample JS client but I couldn't get the data because I wasn't able to send the headers with the 'key'.

The headers

So, I really hope you have a way to help me and sorry for my basic English :(

Share Improve this question asked Mar 31, 2016 at 18:25 RynelfRynelf 711 gold badge1 silver badge6 bronze badges 3
  • You can use libraries like socket.io to connect with the ws:// and wss:// protocols. – wrxsti Commented Mar 31, 2016 at 18:33
  • A quick google came up with npmjs./package/websocket for node. and msdn.microsoft./en-us/library/… for – phuzi Commented Mar 31, 2016 at 18:36
  • How do we get the websocket data from chrome dev tool into an external file ? – Dr. Younes Henni Commented May 3, 2018 at 9:30
Add a ment  | 

1 Answer 1

Reset to default 8

WebSockets is a standard technology to implement stateful, persistent connections between clients and servers. It has its own protocol ws:// and wss:// (like https://).

What you need is a proper WebSocket client to receive data from the server.

The problem here is WebSockets it's not a protocol per se. There's no concept of request and response. It's like working with TCP sockets.

If you want to work with WebSockets, NodeJS has Socket.IO client API.

In C#, you should take a look at SignalR.

发布评论

评论列表(0)

  1. 暂无评论