pubnub = PUBNUB.secure({
subscribe_key : "#{config.subscribe_key}",
publish_key : "#{config.publish_key}",
origin : 'pubsub.pubnub.com',
ssl : true,
cipher_key : "#{config.publish_key}"
});
pubnub.subscribe({
restore : true,
channel : 'broadcast',
callback : function(data) {
debugger;
new_message_notification(data);
}
});
コールバックが機能していませんが、ブラウザーの [ネットワーク] タブに応答が表示されます。問題はどこだ?