SocketRocket
SocketRocket copied to clipboard
Subscribing to rooms
Hi! I have server with rooms to chat. Full url is ws://93.171.XXX.XX:8080/conversation_realtime/sportspace581a1541590b21.14581077".
But I have to connect to this by 2 steps:
- connect to "ws://93.171.XXX.XX:8080"
- subscribe to room "conversation_realtime/sportspace581a1541590b21.14581077"
In JS in "goswebsocket" library it looks like:
var _WS_URI = "ws://93.171.242.80:8080";
var webSocket = WS.connect(_WS_URI);
webSocket.on("socket/connect", function(session){
session.subscribe("conversation_realtime/sportspace581a1541590b21.14581077", function(uri, payload){
console.log(payload.message.text);
}
}
Can I realize it in your library? Can't find subscribing to rooms.
Same question here!? How i pub/sub to channels?
did you'll find a solution for this, looking for the same thing