XMPP disco#info结果中的"type"属性是什么?

4
根据XEP-030
每个元素必须具有“category”和“type”属性,指定实体的类别和类型。
我实际上不理解type属性代表什么。
例如,当我向我的MUC组件发送disco#info查询时,我会得到以下答案:
<iq to='admin@localhost/986758107-tigase-8' from='muc.localhost' type='result'>
    <query xmlns='http://jabber.org/protocol/disco#info'>
        <identity category='conference' name='Multi User Chat' type='text'/>
        <feature var='jabber:iq:version'/>
        <feature var='urn:xmpp:ping'/>
        <feature var='http://jabber.org/protocol/commands'/>
        <feature var='http://jabber.org/protocol/muc'/>
    </query>
</iq>

type属性设置为"text"是什么意思?除了与namecategory创建唯一组合之外,是否还有其他用途?或者可能是其他的东西吗?

1个回答

5

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接