A small program making it easier to filter out music on Spotify.
-
Create an application in the Spotify API dashboard. Add a redirect URI pointing to
http://localhost:4321/login
. The port4321
is configured in the.spotify-next.json
config file (see usage). -
If you have coursier, this will install the app in your current working directory:
coursier bootstrap com.kubukoz:spotify-next_3:1.4.0 -o spotify-next
# now you can run the app like this:
./spotify-next --help
Alternatively, if you want a fresh-out-of-the-oven version, you can build it from source:
sbt stage
This will create a launcher at ./target/universal/stage/bin/spotify-next
.
The application requires some configuration (e.g. the client ID for the Spotify Web API).
It's stored in a file at $XDG_CONFIG_HOME/spotify-next/config.json
or $HOME/.config/spotify-next/config.json
(whichever works first).
When you first run the application, or if that file is deleted, the application will ask and attempt to create one.
The configuration defines the port for the embedded HTTP server used for authentication. The server will only start when the login flow is triggered, and stop afterwards.
$ ./spotify-next --help
Usage:
spotify-next login
spotify-next skip
spotify-next drop
spotify-next forward
spotify-next jump
spotify-next s
spotify-next d
spotify-next f
spotify-next j
spotify-next repl
spotify-next: Gather great music.
Options and flags:
--help
Display this help text.
--version, -v
Print the version number and exit.
Subcommands:
login
Log into Spotify
skip
Skip to next track without any changes
drop
Drop current track from the current playlist and skip to the next track
forward
Fast forward the current track by a percentage of its length (10% by default)
jump
Fast forward the current track to the next section
s
Alias for `skip`
d
Alias for `drop`
f
Alias for `forward`
j
Alias for `jump`
repl
Run application in interactive mode
You can run the login command to be prompted for authorization, or you can rely on the fallback mechanism of all API calls - when one fails with 401 Unauthorized, you'll see the response and be prompted to log in. The call will be retried once after you successfully log in.
The application automatically saves the token to the configuration file after successful logins.