XMPP disco#info 结果中的 "type" 属性是什么
What is the "type" attribute in XMPP disco#info result
根据XEP-030:
Each <identity/> element MUST possess the 'category' and 'type' attributes specifying the category and type for the entity
我其实不明白 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"
但这是什么意思?除了用 name
和 category
创建一个独特的组合之外,还有其他目的吗?或者也许是别的什么?
现有(类别、类型)元组记录在此处:https://xmpp.org/registrar/disco-categories.html。 Conference+text是一个"Text conferencing service",也就是群聊服务器
根据XEP-030:
Each <identity/> element MUST possess the 'category' and 'type' attributes specifying the category and type for the entity
我其实不明白 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"
但这是什么意思?除了用 name
和 category
创建一个独特的组合之外,还有其他目的吗?或者也许是别的什么?
现有(类别、类型)元组记录在此处:https://xmpp.org/registrar/disco-categories.html。 Conference+text是一个"Text conferencing service",也就是群聊服务器