Skip to content

Commit

Permalink
Step 2 - Install Ably
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonWoolf authored and tomczoink committed May 31, 2019
1 parent 5666669 commit 68e8425
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions example.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<html>
<body>
<h1>Presence example</h1>
</body>

<!-- Include the latest Ably Library -->
<script src="https://cdn.ably.io/lib/ably.min-1.js"></script>

<!-- Instance the Ably library -->
<script type="text/javascript">
alert("You need to add your API key"); /* REMOVE THIS */
var realtime = new Ably.Realtime({
key: "INSERT-YOUR-API-KEY-HERE", /* ADD YOUR API KEY HERE */
clientId: "my-client-id" /* This is who you will appear as in the presence set */
});
</script>
</html>

0 comments on commit 68e8425

Please sign in to comment.