mirror of
https://github.com/c0de-archive/spotipy.git
synced 2024-11-05 07:27:47 +00:00
add follow playlist api call
This commit is contained in:
parent
22558bc253
commit
a97959c54e
@ -475,6 +475,17 @@ class Spotify(object):
|
||||
return self._delete("users/%s/playlists/%s/tracks" % (user, plid),
|
||||
payload = payload)
|
||||
|
||||
def user_playlist_follow_playlist(self, playlist_owner_id, playlist_id):
|
||||
'''
|
||||
Add the current authenticated user as a follower of a playlist.
|
||||
|
||||
Parameters:
|
||||
- playlist_owner_id - the user id of the playlist owner
|
||||
- playlist_id - the id of the playlist
|
||||
|
||||
'''
|
||||
return self._put("users/{}/playlists/{}/followers".format(playlist_owner_id, playlist_id))
|
||||
|
||||
def me(self):
|
||||
''' Get detailed profile information about the current user.
|
||||
An alias for the 'current_user' method.
|
||||
|
Loading…
Reference in New Issue
Block a user