Log on to party.conal.tech, click to get a sharable link and let anyone with the link add songs to your Spotify queue!
-
Clone this repo
-
Go to https://developer.spotify.com/dashboard, log in and create an application. Note the client id and client secret.
-
In your terminal,
cdinto spotify-playback-picker and runnpm install -
Set the environment variables:
export CLIENT_ID=<your app's client id>export CLIENT_SECRET=<your app's client secret>export PORT=<whatever port you want to run on>export CALLBACK_URL=http://localhost:<PORT>/spotify-callback- replace with whatever port you specified in the previous variable.
In order for your redirect URI to be valid, you must specify it in your application on developer.spotify.com/dashboard. Go to your application on developer.spotify.com/dashboard, click the "edit settings" button, and add your redirect uri complete with http:// at the start and the port, and
/spotify-callbackat the end. Eg.http://localhost:8000/spotify-callback