如何在WampSharp中启动连接时发送命令

时间:2017-11-06 11:54:08

标签: c# wampsharp

我遇到过这个问题Can't connect to Poloniex 。我想我找到了solution。我打开连接时需要发送命令。像这样。

from websocket import create_connection
import json

ws = create_connection("wss://api2.poloniex.com:443")
ws.send('{"command" : "subscribe", "channel" : 1001}')

while True:
    result = ws.recv()
    json_result = json.loads(result)
    if len(json_result) >= 3:
        print(json_result)

ws.close()

但它是Python的代码。我怎样才能在WampSharp中制作它?

1 个答案:

答案 0 :(得分:1)

WampSharp是WAMP协议的库。您附加的代码不使用WAMP协议,而是使用不同的自定义WebSocket子协议。因此,无法使用WAMP库来使用此服务。