Follow Artists or Users
me.following.follow(FollowingFollowParams**kwargs)
PUT/me/following
Add the current user as a follower of one or more artists or other Spotify users.
Parameters
Follow Artists or Users
import os
from spotted import Spotted
client = Spotted(
access_token=os.environ.get("SPOTIFY_ACCESS_TOKEN"), # This is the default and can be omitted
)
client.me.following.follow(
ids=["string"],
)