socket = new WebSocket(
${SOCKET_URL}${uuid});
I expect to send authorization header just like in any other request to APIs. Can I do the same while sending request to the WebSocket. Please answer it keeping in mind that this for typescript.
socket = new WebSocket(
${SOCKET_URL}${uuid});
I expect to send authorization header just like in any other request to APIs. Can I do the same while sending request to the WebSocket. Please answer it keeping in mind that this for typescript.