FollowingApi

open class FollowingApi(api: GenericSpotifyApi) : SpotifyEndpoint

This endpoint allow you check the playlists that a Spotify user follows.

Api Reference

Constructors

FollowingApi
Link copied to clipboard
common
fun FollowingApi(api: GenericSpotifyApi)

Functions

areFollowingPlaylist
Link copied to clipboard
common
suspend fun areFollowingPlaylist(playlist: String, vararg users: String): List<Boolean>
Check to see if one or more Spotify users are following a specified playlist.
areFollowingPlaylistRestAction
Link copied to clipboard
common
fun areFollowingPlaylistRestAction(playlist: String, vararg users: String): SpotifyRestAction<List<Boolean>>
Check to see if one or more Spotify users are following a specified playlist.
isFollowingPlaylist
Link copied to clipboard
common
suspend fun isFollowingPlaylist(playlist: String, user: String): Boolean
Check to see if a specific Spotify user is following the specified playlist.
isFollowingPlaylistRestAction
Link copied to clipboard
common
fun isFollowingPlaylistRestAction(playlist: String, user: String): SpotifyRestAction<Boolean>
Check to see if a specific Spotify user is following the specified playlist.

Properties

api
Link copied to clipboard
common
val api: GenericSpotifyApi
cache
Link copied to clipboard
common
val cache: SpotifyCache

Inheritors

ClientFollowingApi
Link copied to clipboard

Sources

common source
Link copied to clipboard