1.2.1 • Published 7 years ago

spotify-request v1.2.1

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

Spotify-Request

Spotify-Request is an API server for the Spotify service that serves requests via Socket.io. It allows remote query against the spotify api without local keys.

Currently the following requests are supported:

  • Get Track via Spotify URI

Using the library

There are two ways to use this library:

  • Hosting a socket.io API server
let spotreq    = require('spotify-request');
let api_server = new spotreq.APIServer(3000, 'Spotify WEB API KEY', 'Corresponding secret');
  • Access to the underlying Spotify API proxy (SpotifyRequest)
let spotreq  = require('spotify-request');
let proxy    = new spotreq.SpotifyRequest('Spotify WEB API KEY', 'Corresponding secret');

There are slightly larger examples in ./examples, but you should be able to follow the source for more details :)

1.2.1

7 years ago

1.2.0

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago