get a list of all songs & their artists within a playlist.
- make an app on spotify dev. dashboard
- set the redir. URI to
http://localhost:8080/callback
- select
Web API
under APIs Used
- set the redir. URI to
- put the ClientID & Secret into a
.env
file at project root- alternatively export or source the envs
cat > .env << EOF
SPOTIFY_ID="idgoeshere"
SPOTIFY_SECRET="wowsosecret"
EOF
- run the program normally
- if running using an executable, the ID & Secrets will need to be made available to the program
Suggestions are welcome.