JesseVelden / Node-Spotify-Playlist

Node.js - Spotify Playlist Data

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Node.js - Spotify Playlist Data

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.

Dependencies

This project depends on restler to make HTTP(S) requests, spotify-uri for converting Spotify URI's and cheerio.

Install

npm install spotify-playlist --save

Usage

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.

About

Node.js - Spotify Playlist Data


Languages

Language:JavaScript 100.0%