我正在使用 twilio javascript sdk 进行 twilio-programmable-chat。
而且我想将分页应用于我的频道结果,但我无法弄清楚。
这是我当前的代码。
this.chatClient.getUserChannelDescriptors().then(paginator => {
// All channels are fetched
})
我试图通过与工作pageSize
方式类似的方法,getMessages(10)
但没有成功。
this.chatClient.getUserChannelDescriptors(10).then(paginator => {
// The result was same, it fetched all the channels instead of just 10
})
我正在寻找一个如何在频道上进行分页的示例。谢谢。