Enter your Spotify Developer credentials and authorize access:
This will open Spotify's login page in your default browser.
http://127.0.0.1:8228/callbackNote: The Client ID and Client Secret are used to authenticate your app with Spotify. Keep the Client Secret private and never share it publicly.
Important: The Redirect URI must be exactly http://127.0.0.1:8228/callback. Port 8228 must be available when authorizing. If you get a port error, close any application using port 8228.
Scopes used: This app requests access to your profile, email, saved library (tracks, albums), playlists (including private and collaborative), and followed artists.
Loading favorites...
{:else}Refreshing favorites from Spotify...
| Playlist | Tracks |
|---|---|
| Spotify Likes | {tracks.length} |
| {playlist.name} | {playlist.track_count} |
| Title | Artist | Album | Duration |
|---|---|---|---|
| {track.name} | {track.artist_name} | {track.album_name} | {formatDuration(track.duration_ms)} |
| Artist | Followers |
|---|---|
| {artist.name} | {artist.followers.toLocaleString()} |
| Album | Artist | Year |
|---|---|---|
| {album.name} | {album.artist_name} | {album.release_date ? new Date(album.release_date).getFullYear() : '—'} |