I am implementing Spotify service in iPhone. I want to search playlists in Spotify. Is there any API in Spotify to get it.
Please help.
Asked
Active
Viewed 257 times
1

Tinku George
- 195
- 2
- 11
1 Answers
1
You probably want to check out the documentation for the SPSearch
class, there are methods there which allow you to search for playlists (among other things).

Nik Reiman
- 39,067
- 29
- 104
- 160
-
Thanks for your response. But the below link says it is not possible. http://stackoverflow.com/questions/8627627/spotify-apps-api-library-class-wont-return-users-playlists – Tinku George Dec 14 '12 at 08:41
-
Sorry -- your question wasn't very clear. I thought you were just looking for the ability to search for playlists. Getting a list of a user's playlist is a different matter entirely, and as you correctly noted, is not possible for privacy reasons. – Nik Reiman Dec 14 '12 at 08:46
-
Is there any difference between libSpotify and libCocoaLibSpotify. – Tinku George Dec 14 '12 at 10:11
-
libspotify is a native C library, cocoaLibSpotify is an obj-c wrapper around libspotify which makes it easier to work with in iOS and Mac OSX. – Nik Reiman Dec 14 '12 at 11:08