diff --git a/SpotifyImport.py b/SpotifyImport.py
index adfd034b25370dd38243140dcc58e751b546dc19..3c5fb71500807418f9c4590267ec52321d7bea3c 100644
--- a/SpotifyImport.py
+++ b/SpotifyImport.py
@@ -13,7 +13,7 @@ LOGGER = DefaultLogger().create_logger_if_not_exists('SpotifyBackup', logFormat=
 
 class SpotifyImport:
     def __init__(self, clientID: str):
-        client_credentials_manager = SpotifyPKCE(client_id=clientID, redirect_uri='http://localhost',
+        client_credentials_manager = SpotifyPKCE(client_id=clientID, redirect_uri='http://localhost:8080',
                                                  scope='playlist-modify-private')
         self._spotify = spotipy.Spotify(client_credentials_manager=client_credentials_manager)