I can't find any persistent/session data on the the authorizer request beyond the CONNECT command. How are we supposed to authorise subsequent commands like join?
The connect is authorize-able by providing an argument, like localhost:3000/ws?key=${token}. But that param doesn't make it to the join command, and I can't find anything else, like a cookie with session-id, or custom header, either.
I can't find any persistent/session data on the the authorizer request beyond the
CONNECTcommand. How are we supposed to authorise subsequent commands likejoin?The
connectis authorize-able by providing an argument, likelocalhost:3000/ws?key=${token}. But that param doesn't make it to thejoincommand, and I can't find anything else, like a cookie with session-id, or custom header, either.