Hi,
Referring to post Websocket post we are able to connect to websocket. Now when I try to connect to a secure websocket using copas and the url includes a query string then the query string is dropped. for example. How can we solve this?
Referring to post Websocket post we are able to connect to websocket. Now when I try to connect to a secure websocket using copas and the url includes a query string then the query string is dropped. for example. How can we solve this?
Code:
if not skt then
--add receive thread
copas.addthread(function()
local reconnect = function()
local url= "wss://192.168.0.54:8002/api/v2/channels/remote.control?name=MTUyNjQ1MTQ="
skt,err = ws.client('copas',0)
local noerr,a = skt:connect(url)
if(noerr==true) then
init()
else
alert('[tcp-client] error connecting %s',a)
return
end
end
if not skt or skt==nil or skt.state=='CLOSED' then
reconnect()
end
if(skt) then
while true do
local resp,err = copas.receive(skt)
-- if theres no connection start a new connection
if(skt.state=='CLOSED')then
if not resp then
alert("[tcp-client] Receive error: %s", err)
copas.removeserver(skt)
skt = nil
break
end
else
local fd,prtd = pcall(parse,resp)
if(fd==false)then
alert("Error with parsemsg %s ",prtd)
end
end
end
end
end)
end