我正在尝试使用带有以下代码的 Relay SDK 订阅 Signalwire 电话号码:
this.client1 = new Relay({
project: 'myprojectid',
token: jwtToken,
})
this.client1.subscribe({
protocol: "WSS",
channels: ["channel1", "channel2"]
}).then(r => {
console.log(r);
})
它抛出一个错误:
"code": -32004,
"message": "Ignored 'blade.subscription' request because the protocol is not available"
我尝试搜索文档,但找不到有关如何使用 Relay SDK 订阅频道的信息。我也尝试过其他协议,例如“TLS”、“TCP”或“http、https”等,但没有成功。请分享订阅频道或电话号码的任何文档。