spotify-web-api-js

A client-side JS wrapper for the Spotify Web API

MIT License

Downloads
5K
Stars
1.8K
Committers
26

Bot releases are hidden (Show)

spotify-web-api-js - Version 0.19.3

Published by JMPerez about 8 years ago

The library will now encode properly the user's id when used as part of the endpoint URL (see commit). User ids like #matze23 will not be treated as a hash in the URL.

spotify-web-api-js - Version 0.19.2

Published by JMPerez over 8 years ago

@longears found a bug when fetching current user's list of playlists. It is fixed now :)

spotify-web-api-js - Version 0.19.1

Published by JMPerez over 8 years ago

If you were providing a polyfill for Promise and were getting the error "Unsupported implementation of Promises/A+", this release should fix it. The library was checking for the existence of a function that is not part of the Promises/A+ standard, but used to be defined when the check was introduced.

spotify-web-api-js - Version 0.19.0

Published by JMPerez over 8 years ago

spotify-web-api-js - Version 0.18.1

Published by JMPerez almost 9 years ago

The wrapper should work on IE11 for non-GET requests that pass the data in the query string and send empty body.

spotify-web-api-js - Version 0.18.0

Published by JMPerez almost 9 years ago

You can now have access to the set access token using the getAccessToken() function.

spotify-web-api-js - Version 0.17.0

Published by JMPerez almost 9 years ago

You can now make a request to fetch current user's playlists without having to send the current user's id, so you save one request. See https://twitter.com/SpotifyPlatform/status/671708774747545600

spotify-web-api-js - Version 0.16.1

Published by JMPerez almost 9 years ago

You can now manage user's saved albums. Thanks @danmactough!

spotify-web-api-js - Version 0.15.0

Published by JMPerez over 9 years ago

You can now get a list of the artists that the current user is following

spotify-web-api-js - Version 0.14.0

Published by JMPerez over 9 years ago

You can now import this package using require from nodejs

spotify-web-api-js - Version 0.13.0

Published by JMPerez over 9 years ago

You can now reorder tracks in a playlist

spotify-web-api-js - Version 0.12.0

Published by JMPerez over 9 years ago

You can now abort an on-going request calling the abort method in the returned promise. This is useful, for instance, if you want to use the wrapper for a search box that shows results as the user types.

There is information about how to use it in the README file.

spotify-web-api-js - Version 0.11.0

Published by JMPerez over 9 years ago

You can now remove tracks from playlists specifying positions and snapshot_id

spotify-web-api-js - Version 0.10.0

Published by JMPerez over 9 years ago

You can now fetch playlists by a certain category using the "browse" feature of the Spotify Web API

spotify-web-api-js - Version 0.9.0

Published by JMPerez over 9 years ago

You can now check whether a set of users are following a certain playlist

spotify-web-api-js - Version 0.8.0

Published by JMPerez almost 10 years ago

You can now follow and unfollow playlists

spotify-web-api-js - Version 0.7.0

Published by JMPerez almost 10 years ago

You can now follow, unfollow and check if the current user is following other users or artists

spotify-web-api-js - Version 0.6.0

Published by JMPerez almost 10 years ago

Added search for playlists

spotify-web-api-js - Version 0.5.0

Published by JMPerez almost 10 years ago

spotify-web-api-js - Version 0.4.2

Published by JMPerez about 10 years ago

The optional parameters were not being merged properly with the defaults in some endpoint calls.