This package has been deprecated

Author message:

unmaintained

spotify-personal-auth

1.1.6 • Public • Published

Spotify Personal Auth

NPM version JavaScript Style Guide

A Spotify authorization code flow implementation for local personal use.

Install

Install with npm:

$ npm i spotify-personal-auth --save

Usage

const auth = require('spotify-personal-auth')
const SpotifyWebApi = require('spotify-web-api-node')
 
// Configure module
auth.config({
  clientId: 'YOUR_CLIENT_ID', // Replace with your client id
  clientSecret: 'YOUR_CLIENT_SECRET', // Replace with your client secret
  scope: ['user-modify-playback-state', 'user-top-read'], // Replace with your array of needed Spotify scopes
  path: '/path/to/a/tokens.json' // Optional path to file to save tokens (will be created for you)
})
 
const api = new SpotifyWebApi()
 
/* Get token promise, the token will refresh if this is called when it has expired,
 * But you can get the refresh token if you would rather handle it
 * It is resolve as an array containing the token and refresh as shown below
 */
auth.token().then(([token, refresh]) => {
  // Sets api access and refresh token
  api.setAccessToken(token)
  api.setRefreshToken(refresh)
 
  return api.getMyTopTracks()
}).then(data =>
  // Plays user's top tracks
  api.play({
    uris: data['body']['items'].map(item => item['uri'])
  })
).catch(console.log)

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Running Tests

Install dev dependencies:

$ npm i -d && npm test

Author

Tomer Aberbach

License

Copyright © 2019 Tomer Aberbach Released under the MIT license.

Package Sidebar

Install

npm i spotify-personal-auth

Weekly Downloads

1

Version

1.1.6

License

MIT

Unpacked Size

9.42 kB

Total Files

5

Last publish

Collaborators

  • tomeraberbach