spotify-web-api-node
spotify-web-api-node copied to clipboard
A Node.js wrapper for Spotify's Web API.
## Changes - Completely replaces superagent with Node's/the browser's `fetch` function. - This is a major version change, IMHO, as the application using this will now need to be in...
I can authorize with my primary Spotify account and get a access token. However, whenever I try to authorize with my other Spotify accounts, it cannot grant an access token....
When you retrieve a spotify track from either "liked" or a playlist, a property is added to the track object: `is_local`. Example in api docs: https://developer.spotify.com/documentation/web-api/reference/get-users-saved-tracks Current SpotifyApi.TrackObjectFull type definition:...
Hi all! Love the library and have been using it a bunch for a personal project. I tried to use it with Cloudflare Workers and, weirdly, Superagent does not seem...
getQueue getPlaylistCoverImage addToPlaybackQueue getAvailableMarkets added
Hello! You Didn't add locale parameter to all search functions. I'm using the searchTracks feature, but I can't find any Korean search results. So I forcibly added the locale to...
```ts const playlistData = await spotify.createPlaylist("Daily Music Drive", { description: "Spotify's Daily Drive without podcasts", }); console.log("Uploading playlist cover"); await spotify.uploadCustomPlaylistCoverImage( playlistData.body.id, imageStore.dailyMusicDrive ); ``` The first request works without...
Closes https://github.com/thelinmichael/spotify-web-api-node/issues/483.