I was able to get all the playlist of users using spotify ios sdk, this is my code.
[SPTPlaylistList playlistsForUserWithSession:session callback:^(NSError *error, id object) {
SPTListPage *pl= object;
NSLog(@"%@",pl.items);
}];
But I am not sure now How to get all the tracks of these playlists. any help?
Using Swift3:
After authentication, define a playlist request , like this:
I use alamofire to post this request: