socket.io-client-swift icon indicating copy to clipboard operation
socket.io-client-swift copied to clipboard

Results 182 socket.io-client-swift issues
Sort by recently updated
recently updated
newest added

Hi! We tried upgrading to socket.io-client-swift to v16 from v15 and it tooks us sometime to understand that, but there was a change in behaviour that wasn't documented here -...

I use socket.io version v.16.0.1, iOS 15.5. My configuration is this: ![image](https://user-images.githubusercontent.com/13591333/182823064-65d7138d-c9f1-47eb-b237-810d202b2aec.png) Then I just call this method once: `manager.defaultSocket.connect()` **The problem:** Connecting to the server with nginx load balancer...

I have question On server ```javascript io.on('connection', function (socket) { console.log('token: ' + socket.handshake.auth.token); }); ``` My question is how to set parameter on ios client since there is no...

When I try to use any of the these characters in connectParams the app crashes.

Hello! Can you please tell me how to destroy the socket client? This code doesn't help. There are no strong references to the socket in the code. Thanks! socketManager?.setConfigs([.reconnects(false)]) socketClient?.disconnect()...

Version **16.0.0** **Expected behavior** A connected socket will fire the `disconnect` event when a device loses network. Or fire any event, like `statusChanged` or `reconnect`. **Actual behavior** No `disconnect` event...

i am using socket in my application and it was working fine before Crisp sdk intigration.. After intigarting CRISP sdk, app is crashing when trying to connect socket.. Please check...

The socket keeps reconnecting even if it is connected. `func initSocketIO() { print("initializing") let url = URL.init(string: "https://serveraddress.com") self.socketIO = SocketManager(socketURL: url!, config: [.log(true), .compress, .forceNew(true), .forcePolling(true), .reconnects(false), .forceWebsockets(false)]) self.socket...