Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.97 KB  |  hits: 18  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Pulling Tweets into a Spotify app
  2. {
  3.     "BundleType": "Application",
  4.     "AppIcon": {
  5.         "18x18": "tutorial.png"
  6.     },
  7.     "AppName": {
  8.         "en": "News"
  9.     },
  10.     "SupportedLanguages": [
  11.         "en"
  12.     ],
  13.     "RequiredPermissions": [
  14.                 "http://twitter.com"
  15.                 "http://*.twitter.com"
  16.                 "http://*.twimg.com"
  17.     ],
  18.     "VendorIdentifier": "com.News",
  19.     "RequiredInterface": "1",
  20.     "BundleVersion": "0.2",
  21.     "BundleIdentifier": "News",
  22.     "AppName": "News",
  23.     "AppDescription": "Twitter updates from the Artist playing."
  24. }
  25.        
  26. <script type="text/javascript">
  27.     $(document).ready(function() {
  28.       $('#tweets').twitter({from: 'mediatemple', replies: false})
  29.       launch();
  30.     });
  31.   </script>
  32.  
  33. </head>
  34.  
  35. <body>
  36. <div id="info">
  37. </div>
  38. <div id="news">
  39. </div>
  40. <div id="tweets">
  41. </div>
  42. </body>
  43.        
  44. "RequiredPermissions": [
  45.             "http://twitter.com",
  46.             "http://*.twitter.com",
  47.             "http://*.twimg.com"
  48. ],