我是 xmpp 的新手。现在我想获取名册,但返回了 501 错误。
智商:
<iq type="get" to="xmpp" id="foobar"><query xmlns="jabber:iq:roster"/></iq>
回复:
<iq xmlns="jabber:client" from="xmpp" to="zhangjiuzhou@xmpp/23675463291407297410678734" type="error" id="foobar">
<query xmlns="jabber:iq:roster"/>
<error code="501" type="cancel">
<feature-not-implemented xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"/></error>
</iq>
Best Answer-推荐答案 strong>
删除请求中的 to 属性。您的请求很可能会被发送到您意想不到的地方。
关于ios - ejabberd 501 功能未实现,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/25152078/
|