configureSession return 400

After making the connection with websocket, when i try to send
webSocket.send({ "action": "configureSession",
"deploymentId": "bcc60c46-d8aa-4bb2-86c9-ac9dce7e0354",
"token": "0fa64379-f745-4348-8070-861e9a22fe84"
})

I am getting this as response in onMessage: "{"type":"response","class":"string","code":400,"body":"Request invalid [object Object]"}"

When i tried this same with https://websocketking.com/ test, its working fine.

Am i doing anything wrong ?

Hello,

I think you need to stringify your object (assuming the above code was about javascript and WebSocket object).

let myConfigureSession = {
   "action": "configureSession",
   "deploymentId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
   "token": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
};
webSocket.send(JSON.stringify(myConfigureSession));

Regards,

This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.