0

我正在使用 libstrophe C 库创建 xmpp clint。我能够成功创建节点(打开节点)并发送其他用户的订阅请求,这些请求被添加。现在,当我尝试使用以下节发布时,

<iq type='set'
    from='hamlet@pratik.com/blogbot'
    to='pubsub.pratik.com'
    id='publish1'>
  <pubsub xmlns='http://jabber.org/protocol/pubsub'>
    <publish node='pratik'>
      <item id='123456'>
        <entry xmlns='http://www.w3.org/2005/Atom'>
          <title>Soliloquy</title>
          <summary>
To be, or not to be
          </summary>
        </entry>
      </item>
    </publish>
  </pubsub>

我明白了,

<error code="501" type="cancel"><feature-not-implemented xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"/></error>

有什么建议么?我正在使用 ejabberd 作为服务器

4

0 回答 0