spotify-web-api-node icon indicating copy to clipboard operation
spotify-web-api-node copied to clipboard

A Node.js wrapper for Spotify's Web API.

Results 127 spotify-web-api-node issues
Sort by recently updated
recently updated
newest added

In the [README.md](https://github.com/thelinmichael/spotify-web-api-node/blame/master/README.md#L1223) Example of `Get tracks in a playlist` ```js api .getPlaylistTracks('3ktAYNcRHpazJ9qecm3ptn', { offset: 1, limit: 5, fields: 'items' }) .then( function(data) { console.log('The playlist contains these tracks', data.body);...

I'm using the the webapi with help of node-red. It is possible to play a podcast using the play function with arra y [{context_uri: "spotify:show:0cPsvdqTreF6sKg6VwSrMl", device_id: "190c8e1d61b1b57348d0464dc44a1574630b9ab5"}] but that starts...

how to search for a song with the song link (https://open.spotify.com/track/5kJLPjc6YlvkoEm3aZ0VBV?si=zheh1KQWTfOOeleGlK5CiQ) i mean the docs says only how to search with artist name etc.. and i want to search with...

Hi all, does anybody have any good examples to deal with with paging, for artists with more that 50 albums or more than 50 tracks on an album. Would be...

Hi, My access tokens do not seem to be set correctly. My code is taken from the example (and I have relplaced my id & secret): ``` var SpotifyWebApi =...

I authorise with no problems but when I try and use this node an error returns - WebapiError: Not Found I believe the issue is with the callbak uri -...

There seems to be a common theme with the Spotify API which is that their rate limits are difficult to understand, which is why many people have investigated throttling techniques....