node-spotify-api
node-spotify-api copied to clipboard
A simple easy to use wrapper for the Spotify API.
I'd like to be able to call one of the DELETE endpoints on the Spotify API here: https://developer.spotify.com/documentation/web-api/reference/playlists/remove-tracks-playlist/ but (as per the other open issue regarding UPDATE) requests are forced...
How would I call this endpoint? ```PUT https://api.spotify.com/v1/me/player/play``` The `request` method only accepts a string and forces the method to `GET`...
Is this library completely node-only due to the way you've built it using Node-based tools ( `request-promise`, `Buffer` ) or due to Spotify API restrictions? Ultimately, I'm trying to get...