Subscribing & Unsubscribing
Property
Type
Command
const subscribeMsg = {
type: 'subscribe',
feeds: ['ticker.sfox.btcusd']
}
ws.send(JSON.stringify(subscribeMsg));
...
const unsubscribeMsg = {
type: 'unsubscribe',
feeds: ['ticker.sfox.btcusd']
}
ws.send(JSON.stringify(unsubscribeMsg))subscribe_msg = {
"type": "subscribe",
"feeds": ["ticker.sfox.btcusd"],
}
await ws.send(json.dumps(subscribe_msg))
...
unsubscribe_msg = {
"type": "unsubscribe",
"feeds": ["ticker.sfox.btcusd"],
}
await ws.send(json.dumps(unsubscribe_msg))Last updated