I don't know why I can't connect #2517
Answered
by
MinnDevelopment
qq921124136
asked this question in
Questions and Help
-
Beta Was this translation helpful? Give feedback.
Answered by
MinnDevelopment
Aug 3, 2023
Replies: 1 comment 1 reply
-
You haven't configured the proxy for the websocket client. I believe this would be how: WebSocketFactory factory = new WebSocketFactory();
factory.getProxySettings()
.setHost("127.0.0.1")
.setPort(7890);
builder.setWebsocketFactory(factory) See: |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
qq921124136
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You haven't configured the proxy for the websocket client. I believe this would be how:
See: