How to fetch the user playlist and corresponding details?
Using the web api
@rolflocher Is it not possible to do using Spotify SDK?
@rolflocher I've tried using web api to fetch playlist but it shows me authentication error. Could you please help understand the whole process of how to achieve this? Because in official Spotify iOS SDK docs only authentication & playback process is written. So, how can we use Web APIs into mobile applications? Thanks
You need to go through one of their auth cycles to get an access token. Then you can hit the Web API endpoints with the token in the header for auth just like you would fetch json from any other url.
If you are using the SessionManager auth cycle, the access token is available in the SessionManagerDelegate didInitiate
@rjt3662