Class GetShowsEpisodesRequest
- java.lang.Object
-
- se.michaelthelin.spotify.requests.AbstractRequest<T>
-
- se.michaelthelin.spotify.requests.data.AbstractDataRequest<Paging<EpisodeSimplified>>
-
- se.michaelthelin.spotify.requests.data.shows.GetShowsEpisodesRequest
-
- All Implemented Interfaces:
IRequest<Paging<EpisodeSimplified>>
public class GetShowsEpisodesRequest extends AbstractDataRequest<Paging<EpisodeSimplified>>
Get Spotify catalog information about an show’s episodes.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classGetShowsEpisodesRequest.BuilderBuilder class for building aGetShowsEpisodesRequest.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Paging<EpisodeSimplified>execute()Get episodes of a show.-
Methods inherited from class se.michaelthelin.spotify.requests.AbstractRequest
bodyParametersToJson, deleteJson, executeAsync, getBody, getBodyParameters, getContentType, getHeaders, getHttpManager, getJson, getUri, initializeBody, postJson, putJson
-
-
-
-
Method Detail
-
execute
public Paging<EpisodeSimplified> execute() throws IOException, SpotifyWebApiException, org.apache.hc.core5.http.ParseException
Get episodes of a show.- Returns:
- An array of
EpisodeSimplifiedobjects wrapped in aPagingobject. - Throws:
IOException- In case of networking issues.SpotifyWebApiException- The Web API returned an error further specified in this exception's root cause.org.apache.hc.core5.http.ParseException
-
-