How use option path like socket.io-client for JavaScript?
With client-side JavaScript:
var socket = io('http://127.0.0.1:8080', { path: '/myapp/notify' })
But I can't find path option in this library. In API documents, I saw:
h.connect("http://127.0.0.1:8080") without path option.
Because my socket.io server deploy on a sub-domain with NginX. On server-side:
var io = require('socket.io')(http, { path: '/myapp/notify' });
So my question is: How use option path like socket.io-client for JavaScript?
Did we get an answer on this? Or is this not supported?
I can confirm that this is officially not supported by this library due to the following line:
https://github.com/socketio/socket.io-client-cpp/blob/master/src/internal/sio_client_impl.cpp#L218
I was hit by this today. Kinda annoying...