boost beast WebSocket 升级握手失败
boost beast WebSocket upgrade handshake failed
使用boost::beast(https://www.boost.org/doc/libs/1_66_0/libs/beast/example/websocket/client/sync-ssl/websocket_client_sync_ssl.cpp)的示例代码,我得到:
错误:WebSocket 升级握手失败
为了确保服务器正常,我使用 https://www.websocket.org/echo.html 创建了一个测试,它的服务器响应良好。 url是wss://api.fcoin.com/v2/ws,我的设置是:
host=api.fcoin.com;
port=443;
target=/v2/ws;
有人能帮忙吗?
beast 示例使用 /
的目标,而不是 /v2/ws
。如果要连接到该端点,则需要修改示例。变化:
ws.handshake(host, "/");
至
ws.handshake(host, "/v2/ws");
使用boost::beast(https://www.boost.org/doc/libs/1_66_0/libs/beast/example/websocket/client/sync-ssl/websocket_client_sync_ssl.cpp)的示例代码,我得到:
错误:WebSocket 升级握手失败
为了确保服务器正常,我使用 https://www.websocket.org/echo.html 创建了一个测试,它的服务器响应良好。 url是wss://api.fcoin.com/v2/ws,我的设置是:
host=api.fcoin.com;
port=443;
target=/v2/ws;
有人能帮忙吗?
beast 示例使用 /
的目标,而不是 /v2/ws
。如果要连接到该端点,则需要修改示例。变化:
ws.handshake(host, "/");
至
ws.handshake(host, "/v2/ws");