我无法理解如何在node-xmpp(GTalk帐户)中检索XMPP名单(以及最终每个联系人的在线状态)。
我的示例代码可以登录和连接,但我对发送和收听内容有点遗失:
var xmpp = require('node-xmpp')
jid = 'example@gmail.com'
password = 'xxxxxxxxxxxxxx'
// Establish a connection
var conn = new xmpp.Client({
jid: jid,
password: password,
host: 'talk.google.com',
port: 5222
})
conn.on('online', function() {
console.log('ONLINE')
var roster = new xmpp.Element('iq', {
type: 'get',
from: jid,
id: new Date().getTime()
}).c('query', { xmlns: 'jabber:iq:roster' })
conn.send(roster) // Now what?
})
conn.on('error', function(e) {
console.log(e)
})
答案 0 :(得分:4)
看起来我的名册查询的结构是错误的,这可以正常工作:
conn.on('online', function() {
console.log('ONLINE')
var roster = new xmpp.Element('iq', {
id: 'roster_0',
type: 'get'
}).c('query', {
xmlns: 'jabber:iq:roster'
})
conn.send(roster)
})