79480697

Date: 2025-03-03 10:03:47
Score: 1
Natty:
Report link

You cannot pass the token over the websocket in this way.

The line:

const ws = new WebSocket("/ws", pageToken);

Is specifically failing. Replace it with:

const ws = new WebSocket("/ws");

And it will connect.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sniff