You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. `followingUsers` returns an ordered List of Booleans representing if the user follows the specified users
169
+
2. `followingArtists` returns an ordered List of Booleans representing if the user follows the specified artists
170
+
3. `getFollowedArtists` returns a [Cursor-Based Paging Object](https://developer.spotify.com/web-api/object-model/#cursor-based-paging-object) of followed Artists.
171
+
4. `followUsers` follows the specified users. Cannot be used with artists. Returns nothing
172
+
5. `followArtists` follows the specified artists. Cannot be mixed with users. Returns nothing
173
+
6. `followPlaylist` follows the specified playlist. Returns nothing
174
+
7. `unfollowUsers` unfollows the specified users. Cannot be used with artists. Returns nothing
175
+
8. `unfollowArtists` unfollows the specified artists. Cannot be mixed with users. Returns nothing
176
+
9. `unfollowPlaylist` unfollows the specified playlist. Returns nothing
* This endpoint is in beta per the spotify documentation. These methods may or may not work
8
+
* These endpoints allow for viewing and controlling user playback. Please view [the official documentation](https://developer.spotify.com/web-api/working-with-connect/)
9
+
* for more information on how this works. This is in beta and is available for **premium users only**. Endpoints are **not** guaranteed to work
* Get Spotify catalog information for a single album.
14
+
* @param albumId The Spotify ID for the album.
15
+
* @param market Provide this parameter if you want to apply [Track Relinking](https://github.com/adamint/spotify-web-api-kotlin/blob/master/README.md#track-relinking)
16
+
*
17
+
* @throws BadRequestException if the [albumId] is not found
* Get Spotify catalog information for multiple albums identified by their Spotify IDs. **Albums not found are returned as null inside the ordered list**
27
+
* @param albumIds List of the Spotify IDs for the albums.
28
+
* @param market Provide this parameter if you want to apply [Track Relinking](https://github.com/adamint/spotify-web-api-kotlin/blob/master/README.md#track-relinking)
* Get Spotify catalog information about an album’s tracks. Optional parameters can be used to limit the number of tracks returned.
40
+
* @param albumId The Spotify ID for the album.
41
+
* @param limit The maximum number of tracks to return. Default: 20. Minimum: 1. Maximum: 50.
42
+
* @param offset The index of the first track to return. Default: 0 (the first object). Use with limit to get the next set of tracks.
43
+
* @param market Provide this parameter if you want to apply [Track Relinking](https://github.com/adamint/spotify-web-api-kotlin/blob/master/README.md#track-relinking)
44
+
*
45
+
* @throws BadRequestException if the [albumId] is not found, or positioning of [limit] or [offset] is illegal.
0 commit comments