Websocket :(

[color=yellow]Hello everyone, I need help for websockets i working on stacker working perfectly getting data and parse but when i try to run on jobs not working didn’t checking how to do this or video tutorial where

BLOCK:HttpRequest
  url = "https://localhost/v2/handshake"
  customHeaders = {("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0"), ("Accept", "*/*"), ("Accept-Language", "tr-TR,tr;q=0.8,en-US;q=0.5,en;q=0.3"), ("Connection", "Upgrade")}
  TYPE:STANDARD
  ""
  "application/x-www-form-urlencoded"
ENDBLOCK

BLOCK:Parse
DISABLED
  input = @data.COOKIES["cid"]
  MODE:LR
  => VAR @cid
ENDBLOCK

BLOCK:WsConnect
  url = "wss://localhost/v2"
  keepAliveMilliseconds = 3000000
  customHeaders = {("Host", "api.localhost.com"), ("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0"), ("Accept", "*/*"), ("Accept-Language", "tr-TR,tr;q=0.8,en-US;q=0.5,en;q=0.3"), ("Sec-Fetch-Dest", "websocket"), ("Sec-Fetch-Mode", "websocket"), ("Sec-Fetch-Site", "same-site"), ("Connection", "Upgrade"), ("Upgrade", "websocket")}
  SAFE
ENDBLOCK

BLOCK:WsSend
LABEL:Ayarlarial
  message = "[1,\"ahmetmehmet.com\",{\"roles\":{\"caller\":{\"features\":{\"caller_identification\":true,\"progressive_call_results\":true}},\"callee\":{\"features\":{\"caller_identification\":true,\"pattern_based_registration\":true,\"shared_registration\":true,\"progressive_call_results\":true,\"registration_revocation\":true}},\"publisher\":{\"features\":{\"publisher_identification\":true,\"subscriber_blackwhite_listing\":true,\"publisher_exclusion\":true}},\"subscriber\":{\"features\":{\"publisher_identification\":true,\"pattern_based_subscription\":true,\"subscription_revocation\":true}}}}]"
ENDBLOCK

BLOCK:Delay
  milliseconds = 1000
ENDBLOCK

BLOCK:WsRead
LABEL:AyarlariOku
  => CAP @AyarlariOku
ENDBLOCK

BLOCK:WsSend
LABEL:LoginGONDER
  message = $"[48,1161784386728219,{},\"/user#login\",[],{\"usernameOrEmail\":\"<input.USER>\",\"password\":\"<input.PASS>\"}]"
ENDBLOCK

BLOCK:Delay
  milliseconds = 1000
ENDBLOCK

BLOCK:WsRead
LABEL:LoginOKU
  => CAP @LoginOKU
ENDBLOCK

BLOCK:Keycheck
  banIfNoMatch = False
  KEYCHAIN FAIL OR
    STRINGKEY @LoginOKU Contains "wamp.business-error"
  KEYCHAIN SUCCESS OR
    STRINGKEY @LoginOKU Contains ",\"loginCount\":"
ENDBLOCK

BLOCK:WsSend
LABEL:DATASOR
  message = "[48,2,{},\"/user#getSessionInfo\",[],{\"lang\":\"tr\"}]"
ENDBLOCK

BLOCK:Delay
  milliseconds = 1000
ENDBLOCK

BLOCK:WsRead
LABEL:DATAAL
  => CAP @DATAAL
ENDBLOCK

BLOCK:Parse
  input = @LoginOKU
  caseSensitive = False
  MODE:LR
  => VAR @loginparse
ENDBLOCK

BLOCK:Parse
  input = @DATAAL
  leftDelim = "\",\"email\":\""
  rightDelim = "\",\"username"
  MODE:LR
  => VAR @emailcavo
ENDBLOCK

BLOCK:WsDisconnect
ENDBLOCK

BLOCK:ClearCookies
ENDBLOCK