Skip to content

Instantly share code, notes, and snippets.

@rohinip
Forked from pblca/instantiate.html
Last active August 29, 2015 14:05
Show Gist options
  • Save rohinip/af88fba590836af022c5 to your computer and use it in GitHub Desktop.
Save rohinip/af88fba590836af022c5 to your computer and use it in GitHub Desktop.
<!-- Include the PubNub Library -->
<script src="https://cdn.pubnub.com/pubnub.min.js"></script>
<!-- Instantiate PubNub -->
<script type="text/javascript">
var PUBNUB_demo = PUBNUB.init({
publish_key: 'demo',
subscribe_key: 'demo'
});
</script>
// Publish a simple message to the demo_tutorial channel
PUBNUB_demo.publish({
channel: 'demo_tutorial',
message: 'Hello PubNub, love the JavaScript SDK!'
});
//Subscribe to the demo_tutorial channel
PUBNUB_demo.subscribe({
channel: 'demo_tutorial',
message: function(m){console.log(m)}
});
//Subscribe to the zeblines channel for sample messages
PUBNUB_demo.subscribe({
channel: 'zeblines',
message: function(m){console.log(m)}
});
<html>
<head>
<title>Getting Started With PubNub</title>
</head>
<body>
<script src="https://cdn.pubnub.com/pubnub.min.js"></script>
<script charset="utf-8">
(function(){
var PUBNUB_demo = PUBNUB.init({
publish_key: 'demo',
subscribe_key: 'demo'
});
PUBNUB_demo.subscribe({
channel: 'demo_tutorial',
message: function(m){console.log(m)},
connect : publish
});
function publish() {
PUBNUB_demo.publish({
channel: 'demo_tutorial',
message: 'Hello PubNub, love the JavaScript SDK!'
});
}
})();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment