以编程方式创建 muc room

发布于 2024-11-07 14:26:57 字数 304 浏览 5 评论 0原文

我需要从我的模块创建多用户聊天室。我尝试使用 mod_muc:create/5 -

mod_muc:create_room("conference.localhost", "testroom", "testuser@localhost", "testuser", default).

但是当我运行客户端并登录时,没有任何反应。房间不会创造。

如何从我的模块代码正确创建 muc 房间?我在 ejabberd mod_muc 源代码中哪里可以找到 create_room/5 的执行位置?

谢谢。

I need to create multi user chat room from my module. I try to use mod_muc:create/5 -

mod_muc:create_room("conference.localhost", "testroom", "testuser@localhost", "testuser", default).

But when i run client and login, nothing happens. The room doesn't create.

How can i correctly create muc room from my module code? And where i can find in ejabberd mod_muc source code where create_room/5 executes?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

汹涌人海 2024-11-14 14:26:57

ejabberd mod_muc源码位于ejabberd源代码中的src/mod_muc下,参见:https://github.com/processone/ejabberd/tree/master/src/mod_muc。您的示例代码看起来没有任何问题,您可能还需要在创建后调用 mod_muc_room:start/7

我建议在developemnt ejabberd服务器上使用ejabberdctl debug直接尝试这些功能。

The ejabberd mod_muc source is under src/mod_muc in the ejabberd source code, see: https://github.com/processone/ejabberd/tree/master/src/mod_muc. Nothing looks wrong with your example code, you may also need to call mod_muc_room:start/7 after creation.

I would recommend using ejabberdctl debug on a developemnt ejabberd server & try these functions directly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文