From 9ed89afdb2063baaac694f59e7a97d27871e7a01 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Sun, 30 Nov 2025 16:32:56 +0100 Subject: [PATCH] SpotifyService: Use 127.0.0.1 in redirect URL --- src/spotify/spotifyservice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spotify/spotifyservice.cpp b/src/spotify/spotifyservice.cpp index a56c05469..ea066c630 100644 --- a/src/spotify/spotifyservice.cpp +++ b/src/spotify/spotifyservice.cpp @@ -51,7 +51,7 @@ namespace { constexpr char kOAuthAuthorizeUrl[] = "https://accounts.spotify.com/authorize"; constexpr char kOAuthAccessTokenUrl[] = "https://accounts.spotify.com/api/token"; -constexpr char kOAuthRedirectUrl[] = "http://localhost:63111/"; +constexpr char kOAuthRedirectUrl[] = "http://127.0.0.1:63111"; constexpr char kOAuthScope[] = "user-follow-read user-follow-modify user-library-read user-library-modify streaming"; constexpr char kClientIDB64[] = "ZTZjY2Y2OTQ5NzY1NGE3NThjOTAxNWViYzdiMWQzMTc="; constexpr char kClientSecretB64[] = "N2ZlMDMxODk1NTBlNDE3ZGI1ZWQ1MzE3ZGZlZmU2MTE=";