blob: 623a65a5ff434748de516ba22896b38aa5b25b44 (
plain)
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
|
<h2 class="div"><a name="search3"></a>search3</h2>
<p>
<code>http://your-server/rest/search3.view</code>
<br>Since <a href="#versions">1.8.0</a>
</p>
<p>
Similar to <code>search2</code>, but organizes music according to ID3 tags.
</p>
<table width="100%" class="bottomspace">
<tr>
<th class="param-heading">Parameter</th>
<th class="param-heading">Required</th>
<th class="param-heading">Default</th>
<th class="param-heading">Comment</th>
</tr>
<tr class="table-altrow">
<td><code>query</code></td>
<td>Yes</td>
<td></td>
<td>Search query.</td>
</tr>
<tr>
<td><code>artistCount</code></td>
<td>No</td>
<td>20</td>
<td>Maximum number of artists to return.</td>
</tr>
<tr class="table-altrow">
<td><code>artistOffset</code></td>
<td>No</td>
<td>0</td>
<td>Search result offset for artists. Used for paging.</td>
</tr>
<tr>
<td><code>albumCount</code></td>
<td>No</td>
<td>20</td>
<td>Maximum number of albums to return.</td>
</tr>
<tr class="table-altrow">
<td><code>albumOffset</code></td>
<td>No</td>
<td>0</td>
<td>Search result offset for albums. Used for paging.</td>
</tr>
<tr>
<td><code>songCount</code></td>
<td>No</td>
<td>20</td>
<td>Maximum number of songs to return.</td>
</tr>
<tr class="table-altrow">
<td><code>songOffset</code></td>
<td>No</td>
<td>0</td>
<td>Search result offset for songs. Used for paging.</td>
</tr>
</table>
<p>
Returns a <code><subsonic-response></code> element with a nested <code><searchResult3></code>
element on success. <a href="http://subsonic.svn.sourceforge.net/viewvc/subsonic/trunk/subsonic-main/src/main/webapp/xsd/searchResult3_example_1.xml?view=markup">Example</a>.
</p>
|