Overview#
Connect to the WebSocket server to begin receiving real-time notifications for asynchronous operations.Establishing Connection#
Protocol: WebSocket (ws://) or Secure WebSocket (wss://)Connection URL: ws://<socket-server-ip>:<socket-server-port>Connection Example#
Use Case#
Establish a WebSocket connection before performing any operations that generate asynchronous notifications. The connection provides the communication channel for receiving command status updates and data download links.Once connected, use the join channel operation to authenticate and subscribe to your profile's message queue.Connection does not require authentication - authentication occurs during channel join
Use secure WebSocket (wss://) in production environments
Implement reconnection logic to handle network interruptions
Connection must be established before joining a channel