gpt4 book ai didi

java - 无法通过代理连接到 websocket

转载 作者:行者123 更新时间:2023-12-02 08:59:54 24 4
gpt4 key购买 nike

我正在尝试使用 Java 的 okhttp3 库通过我自己的 http 代理连接到 websocket。

我已在 EC2 实例上设置代理并已正确配置安全组。我可以确认它有效:

time curl -s --proxy http://X.X.X.X:8888 https://api.binance.com/api/v3/ping

real 0m0.597s
user 0m0.040s
sys 0m0.008s

但是,我尝试通过代理连接到 websocket 失败了。下面是代码。

OkHttpClient client = new OkHttpClient.Builder()
.proxy(new Proxy(Type.HTTP, new InetSocketAddress("X.X.X.X", 8888)))
.build();

Request request = new Request.Builder()
.url("wss://fstream.binance.com/stream")
.build();

WebSocket webSocket = client.newWebSocket(request, new WebSocketListener() {
@Override
public void onFailure(final WebSocket webSocket, final Throwable t, final Response response) {
t.printStackTrace();
}
});

如果我删除行 .proxy(new Proxy(Type.HTTP, new InetSocketAddress("X.X.X.X", 8888))) ,那么它工作得很好,但如果我有那行,我得到了异常(exception):

java.io.IOException: Unexpected response code for CONNECT: 403
at okhttp3.internal.connection.RealConnection.createTunnel(RealConnection.kt:447)
at okhttp3.internal.connection.RealConnection.connectTunnel(RealConnection.kt:235)
at okhttp3.internal.connection.RealConnection.connect(RealConnection.kt:170)
at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:236)
...
at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:112)
at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:87)
at okhttp3.RealCall.getResponseWithInterceptorChain(RealCall.kt:184)
at okhttp3.RealCall$AsyncCall.run(RealCall.kt:136)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at java.base/java.lang.Thread.run(Thread.java:834)

我不知道该怎么办?我可以通过终端访问代理,但无法通过它连接到 websocket。

最佳答案

已解决。我的 tinyproxy 配置文件不允许我的 IP 地址。

关于java - 无法通过代理连接到 websocket,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60247425/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com