iOS XMPP group chat implementation

前端 未结 3 1904
萌比男神i
萌比男神i 2021-02-10 22:24

I am trying to create chat room using robbiehanson XMPPframework.

Since I didn\'t get any sample code or documentation, I made a try by myself to initiate a chat room as

相关标签:
3条回答
  • 2021-02-10 22:36

    Finally I figured it out. It may help someone. While creating or joining the room, the format should be yourRoomName@conference.YourDomainName.com. 'conference' is the keyword here.

    0 讨论(0)
  • 2021-02-10 22:36

    As far as I know, MUC is not possible with the facebook XMPP server, because it's a stripped down one. They don't say it explicitly, but I found some hints in the pidgin wiki (it's german): http://wiki.pidgin-im.de/index.php/Facebook. I've been struggling with this topic as well...

    0 讨论(0)
  • 2021-02-10 22:45

    Each room is identified as a "room JID" (e.g., ), where "room" is the name of the MUC room and "service" is the hostname at which the multi-user chat service is running. Reference XEP-0045

    The keyword "conference" is mandatory to use in order to start group chat using XMPP Client.

    0 讨论(0)
提交回复
热议问题