This is a bot that listens to the chat of a given Twitch stream for messages with a Spotify song link in them and then adds that song to a playlist and/or your queue. The Spotify link must be at the start of the message in order to be picked up.
✔️ Message that WOULD be picked up:
!prefix https://open.spotify.com/track/4uLU6hMCjMI75M1A2tKUQC?si=x-_FFgqBRB20mzW_lM7kDQ pls play this, it's a bop
❌ Message that WOULD NOT be picked up:
!prefix this is a bop can you please play this https://open.spotify.com/track/4uLU6hMCjMI75M1A2tKUQC?si=x-_FFgqBRB20mzW_lM7kDQ
- Some basic programming knowledge (running terminal commands and editing
.env
files) - Node (developed and tested on 18 - your mileage may vary on other versions)
- A Spotify account
- A GitHub Personal Access Token (PAT) with the
read:packages
scope stored in an environment variable calledGH_PKG_AUTH_TOKEN
- Click here to generate one
-
Run
npm install
-
Go to the Spotify developer dashboard and create a new application. The app can have whatever name and description you want
-
Once the app is created, click on Edit Settings and add a redirect URL of
http://localhost:8000/spotifyAuth
(NB: the port will be whatever you have set as theAUTH_SERVER_PORT
in the./.env
file, by default it is 8000) -
Create a
./.env
file based on./.env.template
file and fill in the fields-
The playlist ID can be found by either:
- Right-clicking on the playlist -> clicking Share -> Copy Spotify URI and then copying the ID after
spotify:playlist:
e.g.spotify:playlist:{THIS_STRING_IS_THE_ID}
) - Or by right-clicking on the playlist -> clicking Share -> Copy Link to Playlist and then copying the ID after
https://open.spotify.com/playlist/
and before the?si=
e.g.https://open.spotify.com/playlist/{THIS_STRING_IS_THE_ID}?si=12345123
)
- Right-clicking on the playlist -> clicking Share -> Copy Spotify URI and then copying the ID after
-
The Spotify client ID and secret are obtained from the application you created in the Spotify developer dashboard
-
If you wish to have chat feedback, set
CHAT_FEEDBACK
to true then generate a Twitch Chat OAuth Token and set it as theTWITCH_TOKEN
field in the.env
file. Also set theBOT_USERNAME
field to the name of the account you wish to use (must be the same account you generate the OAuth token for)**Do NOT commit this file to Git as it will contain SECRETS to log in as you!**
-
-
Run
npm run build && npm start
to start the bot -
Open the authorization link and give the app the required permissions
-
If you have
ADD_TO_QUEUE
toggled on, ensure you have the Spotify client open and that it is active (i.e. is playing a song) -
Type a Spotify link in the chat (ensuring the link is the first piece of text in the message) and make sure it shows up in your desired playlist (Spotify links should start with
https://open.spotify.com/track/
) -
If there's a problem with Spotify authorization at any point, try deleting the
spotify-auth-store.json
file and starting the app again
-
Run
bash ./build.sh
. This will automatically compile from source usingnpm
and then build OS-native binaries usingpkg
-
Run the freshly compiled binary for your OS in
./out
.
Used for connecting to and performing actions using Spotify
MIT License
Used for connecting to Twitch chat
MIT License
Used for creating a temporary local web server to retrieve the callback from the Spotify authorization
MIT License
Used for the icon
Apache 2 License
Checkout the Contributors file to see everyone who has helped out with the bot