httprb / http

HTTP (The Gem! a.k.a. http.rb) - a fast Ruby HTTP client with a chainable API, streaming support, and timeouts
MIT License
3.01k stars 321 forks source link

Websocket Support #616

Closed joeytheman closed 4 years ago

joeytheman commented 4 years ago

Does this gem support web sockets? I noticed wss is supported in the scheme verification but I did not find any other documentation on web socket implementation.

ixti commented 4 years ago

This is an HTTP client. And WebSocket uses HTTP for the handshake. Response contains Upgrade header, and after that HTTP client is pretty out of the loop AFAIK. :D

joeytheman commented 4 years ago

Thanks