无法使用Node.js + XMPP接收上游GCM消息

时间:2015-06-12 16:18:20

标签: javascript node.js xmpp google-cloud-messaging node-xmpp

我是node.js和XMPP的新手,但不是Javascript或GCM。我无法使用node-xmpp接收上游消息,并且不会调用任何回调,甚至都不会调用error。我查看了其他SO线程,但没有一个解决方案有效。这是我的整个路线:

var express = require('express');
var router = express.Router();
var xmpp = require('node-xmpp');

router.get('/', function(req, res, next) {

  var options = {
    type: 'client',
    jid: 'project-12345@gcm.googleapis.com',
    password: 'apiKey12345',
    port: 5235,
    host: 'gcm.googleapis.com',
    legacySSL: true,
    preferredSaslMechanism : 'PLAIN'
  };

  // this prints correctly
  console.log('Creating xmpp app');

  var cl = new xmpp.Client(options);
  cl.connection.socket.setTimeout(0);
  cl.connection.socket.setKeepAlive(true, 10000);

  // None of these callbacks are called
  cl.on('online', function() {
    console.log('online');
  });

  cl.on('connection', function() {
    console.log('online');
  });

  cl.on('authenticate', function(opts, cb) {
    console.log('authenticated');
  });

  cl.on('error',function(e) {
    console.error(e);
  });

  cl.on('stanza', function(stanza) {
    console.log(stanza);
  });

  res.render('index', { title: 'GCM upstream test' });
});

module.exports = router;

由于

1 个答案:

答案 0 :(得分:0)

OP在此处:问题是因为该路由在到达res.render时终止了XMPP操作。从路由中删除XMPP代码后,我得到XMPP authentication failure,这很可能是由于jid /密码不正确造成的。项目要求已更改,我不再需要上游消息传递,因此我不会尝试修复auth故障。 感谢您的回复