Spotify Metadata API + libspotify

I'm studying the Spotify Metadata API and currently, the only data that are available are its music catalogue.

I would like to be able to pull a Spotify user's playlists/most frequent/most recent played tracks or artists. And by looking at the Spotify Apps API , basic user details can be retrieved. I don't know Objective C (Libspotify SDK).

Here are my questions:

  • Is it possible to use the Request URL for Spotify Apps with the web app I'll be creating? Or use both the Metadata API and the Libspotify SDK ?
  • I've found this github repo, Spotify iQuiz, he was able to pull the playlists of a Spotify user and generate them as questions. Can you please help me breakdown his spotify-api-wrapper.js as well as the spotify-playlist-importer.js? I went through the code and he was using a different requestURL.
  • If item 1 is feasible, is it possible to pull the most frequent/recent tracks a user listens to?
  • this is me extensively thinking or complicating: Is Echo Nest a good tool to use too? Or will this complicate things further?
  • I'm really sorry for this lengthy post, I'm just facing a roadblock right now. And I'm trying to decide whether I should continue or shelve my idea for now. Thank you for your responses!

    Doc links : pastebin


    The Spotify Apps API is only available inside the Spotify client - if you're writing an app that's on the greater web or is otherwise standalone, it's not the API for you.

    iQuiz uses the new beta Web API, which isn't publicly documented yet.

    Listening history is not available through any Spotify API. If the user scrobbles to Last.fm, you can use their APIs instead.

    Your question doesn't mention libspotify at all other than in the title and tags, so I don't know what you want that for.

    链接地址: http://www.djcxy.com/p/55546.html

    上一篇: 本地曲目由Spotify WEB API返回为空

    下一篇: Spotify元数据API + libspotify