我正在尝试使用autobahn websockets连接到poloniex提要。
Poloniex在此提供API信息 - https://poloniex.com/support/api/
我也在使用Autobahn github页面上的示例。我能够建立传输层连接并启动会话,但我遇到了加入领域的问题。
ColumnHeaderMouseClick
以下是数据包跟踪
启动io服务
join_future=session->join("realm1").then
([&](boost::future<uint64_t> joined) {
try {joined.get();}
catch(const std::exception &e) {
std::cerr << e.what() << std::endl;
io.stop();
return;
}
});
std::cerr << "Joined realm" << std::endl;
我很感激任何见解。