
0
Under review
NodeJs: connecting with my own code to OpenIce server.
I've been learning about node js with your demo. So far I've been able to build everything locally with grunt on a Mac OS.
I've been able to connect with your socket.io server at openice site with my own nodejs primitive code. Could you provide more information about your server? Is there any protocol for receiving data? Which messages should I send to your server or listen to in order to start getting data from openice?
Thanks,
I've been able to connect with your socket.io server at openice site with my own nodejs primitive code. Could you provide more information about your server? Is there any protocol for receiving data? Which messages should I send to your server or listen to in order to start getting data from openice?
Thanks,
Customer support service by UserEcho
The server is not currently able to receive any data except requests. The API used by the browser components could also be used under node.js to access data. It is documented in the code. You can start by instantiating an OpenICE object with the website URL "https://www.openice.info". From there you can create tables to gain access to data. You can also check out our usage of that API to build the web demo on openice.info.
Thanks