Created
January 12, 2018 17:38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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