-
Notifications
You must be signed in to change notification settings - Fork 1
/
help.html
37 lines (37 loc) · 1.69 KB
/
help.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
<html>
<head>
<title>iLcatraz Help</title>
</head>
<body>
<h1>iLcatraz Help</h1>
/media/playlists/F84F6DB889F6AD62/tracks/23A23165199F41A6
<ul>
<li>
<p>/media/playlists</p>
<p>gets list of all playlists</p>
</li>
<li>
<p>/media/playlists/<tt>ID</tt></p>
<p>gets properties of a playlist with the id=<tt>ID</tt></p>
</li>
<li>
<p>/media/playlists/<tt>ID</tt>/playlists</p>
<p>gets list of playlists of a playlist folder with the id=<tt>ID</tt>. Errors if not a folder.</p>
</li>
<li>
<p>/media/playlists/<tt>ID</tt>/tracks</p>
<p>gets list of tracks of a playlist with the id=<tt>ID</tt></p>
</li>
<li>
<p>/media/playlists/<tt>ID</tt>/tracks/<tt>ID</tt></p>
<p>gets properties of a track with the given ID of a playlist with the id=<tt>ID</tt></p>
</li>
<li>
<p>/media/playlists/<tt>ID</tt>/tracks/<tt>ID</tt>/file</p>
<p>gets file content of a track with the given ID of a playlist with the id=<tt>ID</tt></p>
</li>
</ul>
<p>If requests have a result of an array of the resources the header <tt>X-Count</tt> contains length of the result. Use <tt>HEAD</tt> method to estimate the request cost.</p>
<p>If requests have a file as the result then the header <tt>X-Loction</tt> contains path of the file inside iTunes Library. Use <tt>HEAD</tt> method to if necessary.</p>
</body>
</html>