I am currently trying to connect server and client with flask_socketio, python-engineio and python-socketio. However, I'm getting the following error and I tried many solutions from here but it still doesn't work
On the server:
The client is using an unsupported version of the Socket.IO or Engine.IO protocols (further occurrences of this error will be logged with level INFO)
On the client:
WARNING:socketIO-client:127.0.0.1:8081/socket.io [engine.io waiting for connection] unexpected status code (400 "The client is using an unsupported version of the Socket.IO or Engine.IO protocols")
My currently config:
python-engineio==4.3.3 python-socketio==5.7.1 Flask-SocketIO==5.2.0
How can I fix this? Thank you guys