PubNub在NodeJS中订阅

时间:2016-08-04 14:37:39

标签: node.js pubnub openwrt

这是我的代码

PubNub = require('pubnub');


var pubnub = new PubNub({

    subscribeKey: "sub-xxxxxxxxxxxx",
    publishKey: "pub-xxxxxxxx"

});


pubnub.subscribe({

    channel : 'test_chan',
    message : function(m){
        console.log(m)
    },
    error : function (error) {
        // Handle error here
        console.log(JSON.stringify(error));
    }
});

操作系统:OpenWRT

NodeJS版本:v0.12.7(这是唯一可用于OpenWRT的版本)

PubNub版本:2.11.3(npm install pubnub)

该代码适用于其他Linux& Windows平台。 出版作品。 但订阅只是不会发生。也没有错误响应。 它只是坐在那里 检查存在显示订阅根本没有发生。

感谢任何帮助。 谢谢

0 个答案:

没有答案