我正在尝试使用这些节更改MUC描述
<iq from='user@example.com' to='group@conference.example.com' type='set' xmlns='jabber:client' id='4fd8ab1b-75e2-4488-a299-124a5e0aa8a3:sendIQ'><query xmlns='http://jabber.org/protocol/muc#owner'><x xmlns='jabber:x:data' type='submit'><field var='muc#roominfo_description'><value>description</value></field></x></query></iq>
服务器回复这些
<error xmlns="jabber:client" code="400" type="modify"><bad-request xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"/><text xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" xml:lang="en">Unknown field 'muc#roominfo_description' of type 'http://jabber.org/protocol/muc#roomconfig'</text></error>
我做错什么了吗?
阿雅伯德18.06 CentOS 6
答案 0 :(得分:2)
我认为您在xml中使用了错误的属性。
只需更换
<field var='muc#roominfo_description
至
<field var='muc#roomconfig_roomdesc
您已完成:)