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

A client-side JS wrapper for the Spotify Web API

Results 29 spotify-web-api-js issues
Sort by recently updated
recently updated
newest added

Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. Changelog Sourced from async's changelog. v2.6.4 Fix potential prototype pollution exploit (#1828) Commits c6bdaca Version 2.6.4 8870da9 Update built files 4df6754 update changelog 8f7f903...

dependencies

Bumps [ansi-regex](https://github.com/chalk/ansi-regex) from 3.0.0 to 3.0.1. Commits f545bdb 3.0.1 c57d4c2 fix a few old XO issues for backport 419250f Fix potential ReDoS (#37) See full diff in compare view [![Dependabot...

dependencies

Fixes [#181](https://github.com/JMPerez/spotify-web-api-js/issues/181)

Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.12.2 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@​ChALkeR). Fix boolean schemas with strictKeywords...

dependencies

Corrects the issue with the encoded "+" in the search request.

**Describe the bug** If you combine multiple filters in a search (searchTracks), the "+" is also encoded, although this is not supposed to be so according to the documentation: https://developer.spotify.com/documentation/web-api/reference/#/operations/search...

Hi, am following readme instructions and I am getting error: ``` Uncaught TypeError: spotify_web_api_js_1.default is not a constructor ``` ```typescript import SpotifyWebApi from 'spotify-web-api-js'; let spotify = new SpotifyWebApi(); ```...

**Is your feature request related to a problem? Please describe.** I am looking for the functionality to add whole artist albums to a playlist, but it seems it is only...

In TypeScript, when calling `getUserPlaylists()`, the options object is ignored when `userId` is passed as undefined. ```typescript const result = await spotify.getUserPlaylists(undefined, { limit: 50 }); console.log(result.length); //

Is there a way to add interceptors to the methods? Something like this: https://github.com/axios/axios#interceptors