You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I hadn't considered opening up the websocket for others to connect to directly. This could indeed be valuable for others wanting to consume this data and utilize it in other ways, so I'm open to allowing it.
Your issue might be CORS-related. I'm only allowing certain origins at this time:
Let me brainstorm this a bit. I think if I were to allow this, I would want some sort of authorization token mechanism on the socket to prevent abusing the endpoint.
I think you bring up a good idea, so let me think about how to allow this functionality.
This tool for TUI can be amazing, we trying the wss but dont work, maybe hearbeat is needed via data to get the response?
`import websocket
def on_message(ws, message):
print(message)
ws = websocket.WebSocketApp("wss://stratum.work",
on_message=on_message)
ws.run_forever()`
The text was updated successfully, but these errors were encountered: