Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
private async Task<Playlists> GetPlayLists(string token, string user)
{
string url = string.Format("https://api.spotify.com/v1/users/{0}/playlists", user);
Playlists playLists = await this.GetSpotifyType<Playlists>(token, url);
return playLists;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment