Package de.sonallux.spotify.api.apis
Class ShowsApi
- java.lang.Object
-
- de.sonallux.spotify.api.apis.ShowsApi
-
-
Constructor Summary
Constructors Constructor Description ShowsApi()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetMultipleShowsRequestgetMultipleShows(String ids)Get Multiple ShowsGetShowRequestgetShow(String id)Get a ShowGetShowsEpisodesRequestgetShowsEpisodes(String id)Get a Show's Episodes
-
-
-
Method Detail
-
getShow
public GetShowRequest getShow(String id)
Get a Show
Get Spotify catalog information for a single show identified by its unique Spotify ID.
- Parameters:
id-The Spotify ID for the show.
- Returns:
- a
GetShowRequestobject to build and execute the request
-
getShowsEpisodes
public GetShowsEpisodesRequest getShowsEpisodes(String id)
Get a Show's Episodes
Get Spotify catalog information about an show's episodes. Optional parameters can be used to limit the number of episodes returned.
- Parameters:
id-The Spotify ID for the show.
- Returns:
- a
GetShowsEpisodesRequestobject to build and execute the request
-
getMultipleShows
public GetMultipleShowsRequest getMultipleShows(String ids)
Get Multiple Shows
Get Spotify catalog information for several shows based on their Spotify IDs.
- Parameters:
ids-A comma-separated list of the Spotify IDs for the shows. Maximum: 50 IDs.
- Returns:
- a
GetMultipleShowsRequestobject to build and execute the request
-
-