Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hbulens/6eb7262bab6ae7501c90ead94934f934 to your computer and use it in GitHub Desktop.
Save hbulens/6eb7262bab6ae7501c90ead94934f934 to your computer and use it in GitHub Desktop.
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