获取 Pubnub 中某个频道的订阅者数量

Get the number of subscribers to a channel in Pubnub

有没有办法获取订阅 Pubnub 中特定频道的订阅者数量?

如果是这样,请告诉我。谢谢。

存在 - 现在就在这里

阅读所有 docs about Presence 以基本了解它提供的内容。

hereNow API 所求。如果您需要其他语言的代码示例,您可以导航到文档站点上的其他 SDK(语言)。

老派callback方式:

pubnub.hereNow(
  {
    channels: ["chats.room1", "chats.room2"],
    includeState: true
  },
  function (status, response) {
    console.log(status, response);
  }
);

async/await方式:

async function getChannelOccupants {
    try {
        const result = await pubnub.hereNow({
            channels: ["chats.room1", "chats.room2"],
        });
    } 
    catch (status) {
        console.log(status);
    }
}