added the link backfilling functionality

minor improvements/corrections
This commit is contained in:
2024-08-01 23:15:38 +05:30
parent 149965a15b
commit b20b15a29a
10 changed files with 285 additions and 71 deletions

View File

@@ -1,6 +1,6 @@
const accountsAPIURL = 'https://accounts.spotify.com';
const baseAPIURL = 'https://api.spotify.com/v1';
const sessionName = 'spotify-manager';
const stateKey = 'spotify_auth_state';
const scopes = {
@@ -19,6 +19,7 @@ const scopes = {
module.exports = {
accountsAPIURL,
baseAPIURL,
sessionName,
stateKey,
scopes
}