Blockcypher Websocket端点不起作用

时间:2018-09-11 12:12:36

标签: websocket blockcypher

我正在使用Blockcypher API进行比特币交易测试,并且在使用websocket API端点时遇到了麻烦。 在创建新的Websocket之后发送常规ping对象时,它可以正常工作:

this.ws.onopen = () => {
  this.ws.send(JSON.stringify({"event": "ping"})) 

但是当尝试检查这样的交易的置信度时,我们会收到错误消息

this.ws.onopen = () => { this.ws.send(JSON.stringify({event: 'tx-confidence', address:'<bitcoin address as string>', confidence:0.9}))

数据类型有问题吗?任何帮助都会很棒!

API reference Event reference

1 个答案:

答案 0 :(得分:1)

您可能已达到极限。考虑在websocket URL的末尾添加BlockCypher令牌。在文档中以某种方式忘记了这一点。