Websocket Reference
Identify Data Schema
Identify Type Enum
User (Producer)
0
Developer (Consumer)
1
Payload Format
? -> Optional field
* -> Only send with payloads of the
DISPATCH
opcode
Example Payload
Opcodes
HEARTBEAT
0
Fired periodically by the client to keep the connection alive.
Client
HEARTBEAT_ACK
1
Sent by the server to acknowledge that a heartbeat has been received.
Server
HELLO
2
Sent by the server immediately after connecting. Contains the heartbeat interval for the client to use.
Server
IDENTIFY
3
Sent by the client to complete the handshake with the server. Contains authentication details.
Client
READY
4
Sent by the server once the handshake has been completed. The client will be able to receive/send payloads immediately after this is received.
Server
DISPATCH
5
An event dispatched by the server. Contains details about the event, as well as the data payload for the event.
Server
SUBMIT
6
Sent by the client to notify the server of new data which will then be routed to the correct consumer appropriately.
Client (producer only)
REPLAY
7
Request a replay of payloads after the given lower bound, and optionally before a given upper bound.
Client (consumer only)
Data Types
HEART_RATE
val
is the BPM of each reading
STEPS
val
the amount of accumulated steps
DISTANCE
val
the accumulated distance in meters
FLOORS_CLIMBED
val
the accumulated floors climbed
STEPS_CADENCE
val
the amount of steps per second taken by the user
SPEED
val
the speed in meter per second of the user
ACCELERATION
d
the acceleration data of the device.
- d[0]
-> acceleration in x direction
- d[1]
-> acceleration in y direction
- d[2]
-> acceleration in z direction
GYROSCOPE
d
the rotation rate of the device.
- d[0]
-> rotation in x direction
- d[1]
-> rotation in y direction
- d[2]
-> rotation in z direction
Close Codes
1001
Server is shutting down
1007
Invalid or unrecognised JSON data was provided
4000
IDENTIFY payload expected but was not received
4001
Improper token was passed for IDENTIFY
4002
Duplicate connection opened
4003
Multiple IDENTIFY payloads received
4004
Unrecognised opcode was received
Last updated
Was this helpful?