forked from spotify/apps-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (68 loc) · 4.46 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<head>
<!-- Spotify CSS files -->
<link rel="stylesheet" type="text/css" href="sp://resources/css/eve.css">
<link rel="stylesheet" type="text/css" href="sp://resources/css/api.css">
<link rel="stylesheet" type="text/css" href="sp://resources/css/player.css">
<link rel="stylesheet" type="text/css" href="sp://resources/css/list.css">
<!-- Project CSS files -->
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/github.css">
</head>
<body>
<div id="wrapper">
<div id="index" class="section">
<h1>Spotify Apps API Tutorials</h1>
<img src="/img/spotify-char.png" class="right" />
<h4>Getting started</h4>
<ul>
<li><a href="spotify:app:api-tutorial:getting-started:manifest">Creating your manifest file</a></li>
<li><a href="spotify:app:api-tutorial:getting-started:arguments">Handling arguments and creating navigational tabs</a></li>
<li><a href="spotify:app:api-tutorial:getting-started:drag-drop">Dragging and dropping content into an app</a></li>
<li><a href="spotify:app:api-tutorial:getting-started:share">Show "Share" popup</a></li>
</ul>
<h4>UI</h4>
<ul>
<li><a href="spotify:app:api-tutorial:ui:buttons">Using standard components for buttons</a></li>
<li><a href="spotify:app:api-tutorial:ui:list-view">Showing a list of tracks</a></li>
</ul>
<h4>Playing music</h4>
<ul>
<li><a href="spotify:app:api-tutorial:playing:play-track">Play a single track</a></li>
<li><a href="spotify:app:api-tutorial:playing:play-list-tracks">Play a list of tracks</a></li>
<li><a href="spotify:app:api-tutorial:playing:current-track">Get the currently playing track</a></li>
<li><a href="spotify:app:api-tutorial:playing:click-to-play">Create a play/pause button with an HTML element</a></li>
<li><a href="spotify:app:api-tutorial:playing:skip-track">Skip to the next or previous track</a></li>
<li><a href="spotify:app:api-tutorial:playing:star-track">Star and unstar a track</a></li>
<li><a href="spotify:app:api-tutorial:playing:user-toplist">Get a user's top tracks</a></li>
</ul>
<h4>Searching</h4>
<ul>
<li><a href="spotify:app:api-tutorial:search:search">Returning all tracks with a given search query</a></li>
<li><a href="spotify:app:api-tutorial:search:search-albums-artist">Search albums for an artist</a></li>
</ul>
<h4>Playlists</h4>
<ul>
<li><a href="spotify:app:api-tutorial:playlist:add-track-playlist">Add a track to a playlist</a></li>
<li><a href="spotify:app:api-tutorial:playlist:get-tracks-from-playlist">Get tracks from a playlist URL</a></li>
<li><a href="spotify:app:api-tutorial:playlist:subscribe">Subscribe and unsubscribe from a playlist</a></li>
<li><a href="spotify:app:api-tutorial:playlist:playlist-mosaic">Showing a playlist mosaic image</a></li>
</ul>
<h4>Interacting with Facebook</h4>
<ul>
<li><a href="spotify:app:api-tutorial:facebook:facebook-auth">Authenticate a user with Facebook</a></li>
<li><a href="spotify:app:api-tutorial:facebook:facebook-listening-history">Get a user's listening history from Facebook</a></li>
</ul>
<h4>Experimental & Unsupported</h4>
<ul>
<li><a href="/tutorials/experimental/twitter.html">Talking to Twitter</a></li>
<li><a href="/tutorials/experimental/echonest.html">Create an EchoNest radio station</a></li>
<li><a href="/tutorials/experimental/polymaps.html">Display a Polymaps object</a></li>
<li><a href="/tutorials/experimental/google_maps.html">Display a Google Maps object</a></li>
</ul>
</div>
</div>
<script src="/js/rainbow-custom.min.js"></script>
<script src="/js/tutorial.js"></script>
</body>
</html>