Our WebSocket server sends out ping
events, expecting a corresponding pong
response. Most WebSocket clients across various programming languages handle this automatically. If you choose to customize the default behavior, you should ensure your client listens for pings and sends back pongs accordingly.
We accept any general payload with the pong
response and do not require a specific format.
Thank you!