33 lines
867 B
TypeScript
33 lines
867 B
TypeScript
import { Buffer } from 'node:buffer';
|
|
import { IGlobalVariable } from '@automatisch/types';
|
|
|
|
const refreshToken = async ($: IGlobalVariable) => {
|
|
const response = await $.http.post(
|
|
'https://accounts.spotify.com/api/token',
|
|
null,
|
|
{
|
|
headers: {
|
|
Authorization: `Basic ${Buffer.from(
|
|
$.auth.data.clientId + ':' + $.auth.data.clientSecret
|
|
).toString('base64')}`,
|
|
'Content-Type': 'application/x-www-form-urlencoded',
|
|
},
|
|
params: {
|
|
refresh_token: $.auth.data.refreshToken as string,
|
|
grant_type: 'refresh_token',
|
|
},
|
|
additionalProperties: {
|
|
skipAddingAuthHeader: true
|
|
}
|
|
}
|
|
);
|
|
|
|
await $.auth.set({
|
|
accessToken: response.data.access_token,
|
|
expiresIn: response.data.expires_in,
|
|
tokenType: response.data.token_type,
|
|
});
|
|
};
|
|
|
|
export default refreshToken;
|