Refresh your Spotify access tokens, simple and easy
First, install the package
npm install spotify-oauth-refresher
or
yarn add spotify-oauth-refresher
Then you are ready to go. Import the package into your project and start using it!
const Updater = require("spotify-oauth-refresher");
const api = new Updater({ clientId: "xxxxx", clientSecret: "xxxxx" });
api.setAccessToken("xxxxx");
api.setRefreshToken("xxxxx");
// You will never need to manually refresh your access token again!
const me = await api.request({
url: "https://api.spotify.com/v1/me",
method: "get",
authType: "bearer",
});
console.log(me.id);
-
constructor
- args
config
<UpdaterConfig> Config for the updater class. See below for more details
- args
-
setAccessToken
- args
token
<string, required> The access token you want the client to use
- returns
this
The current class instance
- args
-
setRefreshToken
- args
token
<string, required> The refresh token you want the client to use
- returns
this
The current class instance
- args
-
removeAccessToken
- args
none
- returns
this
The current class instance
- args
-
removeRefreshToken
- args
none
- returns
this
The current class instance
- args
-
request
- args
config
<UpdaterRequestConfig, required> Config for making the request. Extends AxiosRequestConfig
- returns
AxiosPromise<T = any>
The return value of the axios request. Resolves toAxiosResponse<T = any>
- args
-
refresh
- args
none
- returns
Promise<void>
- args
-
get
accessToken
<string | undefined> The current access token in use -
get
refreshToken
<string | undefined> The current refresh token in use -
get
base64Creds
<string> Base64 encoded client credentials -
storage
<Storage | Cookies> The storage class. In browser environments it is an instance of theuniversal-cookie
class. Otherwise it is an instance of the Storage class
-
set
- args
name
<string, required> The name of the valuevalue
<any, optional> The value that the name should represent
- returns
this
The current Storage instance
- args
-
get
- args
name
<string, required> The name of the value to fetch
- returns
<T = any>
Can be set using TypeScript type arguments. Defaults toany
- args
clientId
: <string, required> The id of your Spotify clientclientSecret
<string, required> The secret of your Spotify client
interface
UpdaterRequestConfig extends AxiosRequestConfig
authType
<AuthType | undefined> The authorization type to use
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
Any contributions are welcomed, from typo fixes to feature additions :)
This project is licensed under the MIT license
Copyright 2021 Matthew Stead
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.