A simple Spotify app to clone your weekly Release Radar to your playlists
-
Follow/Add the real Release Radar playlist to your playlist collection. This is required in order to detect the playlist.
-
Install the required packages via
npm install
-
Create a
.env
file in the project root folder as described in next section -
Execute the service via
node service.js
-
Approve the authorization request from a browser
This file is used to store credentials outside of source code. These are the few things required:
CLIENT_ID=your_client_id_here
CLIENT_SECRET=your_client_secret_here
PORT=8888
SUBPATH=/srr
BROWSER=google chrome
CLOSETAB=true
-
CLIENT_ID
: Your client_id from spotify developer portal app -
CLIENT_SECRET
: Your client_secret from spotify developer portal app (ONLY place this server-side) -
PORT
: HTTP port to listen at for authentication -
SUBPATH
: Localhost common route used by SRR -
BROWSER
: Your browser of choice to use for authentication request (Can be removed or left blank to use default browser) -
CLOSETAB
: Closes the successful authentication tab automatically if set totrue