spotify-web-api-node
spotify-web-api-node copied to clipboard
Incorrect name of Spotify Wrapper
In the README.md
Example of Get tracks in a playlist
api
.getPlaylistTracks('3ktAYNcRHpazJ9qecm3ptn', {
offset: 1,
limit: 5,
fields: 'items'
})
.then(
function(data) {
console.log('The playlist contains these tracks', data.body);
},
function(err) {
console.log('Something went wrong!', err);
}
);
Shouldn't it be spotifyApi
instead of api