1.1.8 • Published 9 months ago

spotify-oauth-simple v1.1.8

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

Spotify OAuth Simple

Refresh your Spotify access tokens, simple and easy


  • Getting Started
  • Examples
  • Documentation
  • Notes
  • Contributing
  • License

First, install the package

npm install spotify-oauth-simple

or

yarn add spotify-oauth-simple

Then you are ready to go. Import the package into your project and start using it!


const Updater = require("spotify-oauth-simple");
const spotifyApi = new Updater({ clientId: "your-client-id", clientSecret: "your-client-secret" });

spotifyApi.setAccessToken("existing-token");

// You will never need to manually refresh your access token again!
const getTrack = await spotifyApi.request({
  url: "https://api.spotify.com/v1/tracks/" + "track-id",
  method: "GET",
  authType: "bearer",
});

console.log(getTrack.data);

class Updater

Methods
  • constructor

    • args
      • config \<UpdaterConfig> Config for the updater class. See below for more details
  • setAccessToken

    • args
      • token <string, required> The access token you want the client to use
    • returns
      • this The current class instance
  • removeAccessToken

    • args
      • none
    • returns
      • this The current class instance
  • request

    • args
    • returns
      • AxiosPromise<T = any> The return value of the axios request. Resolves to AxiosResponse<T = any>
  • refresh

    • args
      • none
    • returns
      • Promise<void>
Properties
  • get accessToken <string | undefined> The existing access token in use

  • get base64Creds \<string> Base64 encoded client credentials

  • storage \<Storage | Cookies> The storage class. In browser environments it is an instance of the universal-cookie class. Otherwise it is an instance of the Storage class

class Storage

Methods
  • set

    • args
      • name <string, required> The name of the value
      • value <any, optional> The value that the name should represent
    • returns
      • this The current Storage instance
  • get

    • args
      • name <string, required> The name of the value to fetch
    • returns
      • <T = any> Can be set using TypeScript type arguments. Defaults to any

interface UpdaterConfig

  • clientId: <string, required> The id of your Spotify client
  • clientSecret <string, required> The secret of your Spotify client

interface UpdaterRequestConfig extends AxiosRequestConfig

  • authType <AuthType | undefined> The authorization type to use

type AuthType

  • bearer|basic Either of these two strings

Requests are handled through the Updater.requests method so that it can automatically refresh the tokens when a request fails due to expired tokens



Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

1.1.8

9 months ago

1.1.7

9 months ago

1.1.6

9 months ago

1.1.5

9 months ago

1.1.4

9 months ago

1.1.3

9 months ago

1.1.2

9 months ago

1.1.1

9 months ago

1.1.0

9 months ago

1.0.9

9 months ago