Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.70 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>2016 House Cup Test</title>
  4.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5.         <script src="https://dweet.io/client/dweet.io.min.js"></script>
  6.     </head>
  7.  
  8.     <body>
  9.     <script>dweetio.get_latest_dweet_for("house-cup-dashboard", function(err, dweet){
  10.  
  11.     var dweet = dweet[0]; // Dweet is always an array of 1
  12.  
  13.     console.log(dweet.thing); // The generated name
  14.     console.log(dweet.content); // The content of the dweet
  15.     console.log(dweet.created); // The create date of the dweet
  16.    
  17.     var blorp = JSON.parse(dweet.content);
  18.    
  19.     document.getElementById("demo").innerHTML = blorp;
  20. });
  21. </script>
  22.  
  23.     <p id="demo"></p>
  24.  
  25.     </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement