在聊天应用程序中发送多聊天通知

时间:2011-08-16 03:53:53

标签: javascript jquery xmpp

我正在使用XMPP / JQuery开发聊天应用程序。在聊天应用程序中,用于     一个多聊天任务,首先必须要求一个成员参与     多聊天。我怎样才能做到这一点。

1 个答案:

答案 0 :(得分:0)

如果您询问如何邀请某人加入多用户聊天室,请阅读XEP-0045, section 7.5。如果您需要邀请Google用户,请发送直接邀请:

<message
    from='darkcave@chat.shakespeare.lit'
    to='hecate@shakespeare.lit'>
  <x xmlns='http://jabber.org/protocol/muc#user'>
    <invite from='crone1@shakespeare.lit/desktop'>
      <reason>
        Hey Hecate, this is the place for all good witches!
      </reason>
    </invite>
    <password>cauldronburn</password>
  </x>
</message>

否则,穿过房间:

<message
    from='crone1@shakespeare.lit/desktop'
    to='darkcave@chat.shakespeare.lit'>
  <x xmlns='http://jabber.org/protocol/muc#user'>
    <invite to='hecate@shakespeare.lit'>
      <reason>
        Hey Hecate, this is the place for all good witches!
      </reason>
    </invite>
  </x>
</message>