[][src]Function aspotify::endpoints::albums::get_album_tracks

pub async fn get_album_tracks<'_, '_>(
    token: &'_ AccessToken,
    id: &'_ str,
    limit: usize,
    offset: usize,
    market: Option<Market>
) -> Result<Page<TrackSimplified>, EndpointError<Error>>

Get an album's tracks.

It does not return all the tracks, but a page of tracks. Limit and offset determine attributes of the page. Limit has a maximum of 50.

Reference.