has anyone tried Pubnub in Node.js behind a corporate firewall..I can get a simple node.js app w/ pubnub working at home but at work I don't receive any messages. So I assume my firewall is blocking anything except port 80 and 443 internet traffic.
Does that mean when I run node.js with pubnub its using websockets?
Thanks!
var pubnub = require("pubnub").init({
publish_key : "demo",
subscribe_key : "demo",
uuid: 'my_custom_uuid'
});
pubnub.subscribe({
channel: "my_channel",
presence: function(m){console.log(m)},
callback: function(m){console.log(m)}
});