-
The default mounting point of `/ws/socket.io` no longer works correctly for quite some time now, because of this change to Starlette (which, apparently, is just following the ASGI spec): https://githu…
-
# receive extra character when using .on listening method
### client side (python)
python 2.7
OSX
```
import logging
from socketIO_client import SocketIO, BaseNamespace
logging.getLogger('…
-
### Is there an existing request for this feature?
- [X] I have searched the existing issues for this feature request and I know that duplicates will be closed
### Is your feature request relate…
-
Hi.
I am using this library, version 2 (socketIO-client 2).
I had trouble emitting binary files in chunks. this is the code:
```
progress = 0
dumpSize = os.stat(s_dummyDumpPath).st_size
dumpFile = op…
-
This is my code for esp8266 :
`#include
#include
#include
#include
#include
#include
#include
ESP8266WiFiMulti WiFiMulti;
SocketIOclient socketIO;
#define USE_SERIAL Serial
…
-
server-side.js
``` javascript
socket.emit('hello' , {text: 'world'} , function (res) {
console.log(res);
});
```
client-side.js
``` javascript
socket.on('hello', function (data, callback) {
c…
-
I'm sure this is a simple problem, kindof surprised I couldn't sort this out.
error message below indicates error is in websockets.py @ this line
@socketio.on('client_connected')
I encountered…
-
Today I was trying to find a library that does the same what [socket.io-redis](https://github.com/socketio/socket.io-redis) does. Would that be a huge deal to add? Thankyou
It would be great if I cou…
-
Something blocks our server to upgrade the protocoll for socketIO
```
/socket.io/?transport=polling HTTP/1.1" 200 97
/socket.io/?transport=websocket HTTP/1.1" None 0
/socket.io/?transport=websock…
-
Hello,
I am trying to use your library in my cakephp application. I can successfully connect and disconnect to the node js server but I cannot send the message.
I write the client as in your example…