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 there a way to intercept and handle any specific server responses like 401 Unauthorized when connecting to websocket using ws.Start() or ws.StartOrFail().
I was trying to use ws.StartOrFail() but it just throws some generic error Unable to connect to the remote server that doesn't have any information about the reason for the error.
Thanks. Would appreciate any help.
The text was updated successfully, but these errors were encountered:
Hey, sorry for the late response.
The original exception is wrapped by our WebsocketException.
So check ex.InnerException, it should give you what you need.
This stands for ws.StartOrFail().
If you want to use the background method ws.Start(), you can follow something like this:
I there a way to intercept and handle any specific server responses like 401 Unauthorized when connecting to websocket using
ws.Start()
orws.StartOrFail()
.I was trying to use
ws.StartOrFail()
but it just throws some generic errorUnable to connect to the remote server
that doesn't have any information about the reason for the error.Thanks. Would appreciate any help.
The text was updated successfully, but these errors were encountered: