在Twilio可编程聊天中过滤私人频道

时间:2020-10-11 13:53:35

标签: javascript twilio twilio-api twilio-programmable-chat

我使用Twilio可编程聊天,我正在寻找一种过滤私人频道的方法。

我创建的每个专用频道都有一个属性-> {'ObjectID':'Apple'}。

我只需要获取具有属性-> {'ObjectID':'Apple'}的私有渠道。 这可能吗?

我认为可以使用“ getUserChannelDescriptors()”来实现,但分页器返回的结果有限。

    chatClient.getUserChannelDescriptors().then(function(paginator) {
  for (i=0; i<paginator.items.length; i++) {
    var channel = paginator.items[i];
    console.log('Channel: ' + channel.friendlyName);
  }
});    

0 个答案:

没有答案