Get all data from both public or private Spotify Playlists without authentication. Based on node-spotify-data.
Due the widget limitation of Spotify, it is only able to load the first 200 songs.
This project depends on restler to make HTTP(S) requests, spotify-uri for converting Spotify URI's and cheerio.
npm install spotify-playlist --save
var spotifyPlaylist = require('spotify-playlist');
var callback = function(err, result) {
console.log(result.playlist.tracks);
}
spotifyPlaylist.playlistUri('spotify:user:spotify:playlist:6RU5ydGPBQ8fJKWAqMj8Hg', callback); //Normal spotify URI.
spotifyPlaylist.playlist('syknyk', '0Idyatn0m08Y48tiOovNd9', console.log); //Using username and playlist ID as parameters.