0

我正在将 mesibo 用于我开发的聊天应用程序之一。我有传入消息、用户状态更改等的侦听器。我不确定当客户端添加到组时 mesibo 如何通知客户端。我确信这是一个实时通信。我没有在任何回调中获得此特定信息。

这实际上是如何工作的?

提前致谢

4

1 回答 1

0

mesibo does not notify your clients. You need to do it from your backend APIs.

  1. Your client connects with your backend to add a member to the group
  2. Your backend invokes mesibo backend APIs to add a member to the group
  3. After adding successfully, your backend can inform all the group members using mesibo backend API https://mesibo.com/documentation/api/backend-api/#message-api

Note that you MUST not use mesibo backend APIs directly from the client, you will get tokenbreach after some time (https://mesibo.com/documentation/faq/other/#why-am-i-getting-the-tokenbreach-error).

于 2021-01-01T05:53:08.927 回答