Uses of Class
de.sonallux.spotify.api.apis.search.SearchRequest
-
Packages that use SearchRequest Package Description de.sonallux.spotify.api.apis de.sonallux.spotify.api.apis.search -
-
Uses of SearchRequest in de.sonallux.spotify.api.apis
Methods in de.sonallux.spotify.api.apis that return SearchRequest Modifier and Type Method Description SearchRequestSearchApi. search(String q, String type)Search for an Item -
Uses of SearchRequest in de.sonallux.spotify.api.apis.search
Methods in de.sonallux.spotify.api.apis.search that return SearchRequest Modifier and Type Method Description SearchRequestSearchRequest. includeExternal(String includeExternal)Possible values: audio
If include_external=audio is specified the response will include any relevant audio content that is hosted externally.
By default external content is filtered out from responses.SearchRequestSearchRequest. limit(int limit)Maximum number of results to return.
Default: 20
Minimum: 1
Maximum: 50
Note : The limit is applied within each type, not on the total response.
For example, if the limit value is 3 and the type isartist,album, the response contains 3 artists and 3 albums.SearchRequestSearchRequest. market(String market)An ISO 3166-1 alpha-2 country code or the stringfrom_token.
If a country code is specified, only content that is playable in that market is returned.
Note :SearchRequestSearchRequest. offset(int offset)The index of the first result to return.
Default: 0 (the first result).
Maximum offset (including limit): 1,000.
Use with limit to get the next page of search results.
-