Real time features
Quick Sync provides real time features via SignalR Hubs using the WebSocket protocol.
/v1/hubs/session
/v1/hubs/notepad
/v1/hubs/chat
Use one of the SignalR clients to connect to the hubs
On the hubs authentication tokens need to be placed in the query parameter
?access_token=<JWT-TOKEN>
The session hub provides real time information of session events.
URL: /v1/hubs/session
Events:
The event payload is:
Coming soon.
Last updated 1 year ago
UserAdded, UserRemoved, SessionExpired, SessionDestroyed, FileRemoved, FileProgress, FileAdded, FileComplete
{ "sessionId": "", "eventType": "", "data": { <event payload> } }