在这个文档中,我们有一个关于 webstream MtGox-API 的信息。
所以这个问题。我们有下一个:
query = {
"id":id,
"call":apicall,
"nonce":nonce,
"currency":cry,
"parameters":params,
"item":item
}
output = serialize({
"op":"call",
"id":id,
"call":self.encode_and_sign(serialize(query)),
"context":"mtgox.com"
})
ws.send(output)
此代码基于此示例
我无法在 HTTP-API 和 Webstreaming API(MtGox 的)之间建立同构。你能给出一个有效的{apicall,params,item}例子吗?例如对于这个查询:
https://mtgox.com/api/1/generic/info
https://mtgox.com/api/1/generic/orders
maybe some more complex...