pong.
This is an application level ping, distinct from the protocol-level ping in the WebSockets standard.
{
"method": "ping",
"req_id": 101
}
{
"method": "pong",
"req_id": 101,
"time_in": "2023-09-24T14:10:23.799685Z",
"time_out": "2023-09-24T14:10:23.799703Z"
}
System
Ping
Verify the WebSocket connection is alive with a ping/pong request
{
"method": "ping",
"req_id": 101
}
{
"method": "pong",
"req_id": 101,
"time_in": "2023-09-24T14:10:23.799685Z",
"time_out": "2023-09-24T14:10:23.799703Z"
}
Clients can ping the server to verify connection is alive and the server will respond with a
Was this page helpful?