Get User Playlists
Fetch all playlists created or saved by the authorized user.
Javascript
const playlists = await tp.user.getPlaylists();
console.log(playlists);
Python
playlists = tp.user.get_playlists()
print(playlists)
Fetch all playlists created or saved by the authorized user.
const playlists = await tp.user.getPlaylists();
console.log(playlists);
playlists = tp.user.get_playlists()
print(playlists)