Download package for Spotify iOS SDK - basic issues

Firstly, having a nice time working with the Spotify iOS SDK development team is a long way to go, and it’s not easy to make the world asynchronous for the tuned masses! :)

We have a question about using the main request, which probably answered elsewhere, but it would be useful to have the DEV be clear on this issue (plus, there may be some new request paradigms in the new iOS SDK that can be used). Basically, our application embeds the Spotify IOS SDK, offering the user the ability to select high-level sound sources: “Stations” and recordings in the “Your Music” section (“Playlists”, “Songs”, “Albums”, and “Artists”).

So, it would be infinitely useful if the developer could determine what requests will be made from the iOS SDK level (and what subsequent requests will be made for the above items). If it turns out that the execution of the initial / root requests is best done through the web API, can the developer describe the official / approved method for generating the URL request?

Also, is there a Spotify document or white paper that formalizes Spotify URIs?

Thank! Drew SoundSpectrum

0
source share
1 answer

In the iOS SDK, all you need is in the object SPTRequest.

  • playlistsForUserInSession:callback: gives you playlists.

  • savedTracksForUserInSession:callback: gives you saved songs.

"" "", - API .

SDK.

+1

Source: https://habr.com/ru/post/1629244/


All Articles