<html>
<head>
<title>PubNub</title>
<script src="jquery.js"></script>
</head>
<body>
<script src="https://cdn.pubnub.com/pubnub.min.js"></script>
<script charset="utf-8">
(function(){
var PUBNUB_demo = PUBNUB.init({
publish_key: 'pub-c-ff76e42d-a14b-4ee1-be9f-863b5e5147bb',
subscribe_key: 'sub-c-992052b0-76cc-11e5-960b-02ee2ddab7fe'
});
PUBNUB_demo.subscribe({
channel: 'demo_tutorial',
message: function(m){
$("#memo").html(m.text);
},
connect : publish
});
function publish() {
PUBNUB_demo.publish({
channel: 'demo_tutorial',
message: {"text":"delta"}
});
}
})();
</script>
<p id="memo"></p>
</body>
</html>
最終更新:2015年10月22日 18:40