Fix TOTP secrets URL - use correct xyloflake/spot-secrets-go repo

This commit is contained in:
2026-02-03 14:29:39 -05:00
parent a335997196
commit b2c28d10f1

View File

@@ -37,7 +37,7 @@ public class SpotifyApiClient : IDisposable
private const string TokenEndpoint = "https://open.spotify.com/api/token";
// URL for pre-scraped TOTP secrets (same as Jellyfin plugin uses)
private const string TotpSecretsUrl = "https://raw.githubusercontent.com/Viperinius/spotify-totp-secrets/refs/heads/main/secrets.json";
private const string TotpSecretsUrl = "https://raw.githubusercontent.com/xyloflake/spot-secrets-go/refs/heads/main/secrets/secretBytes.json";
// Web API access token (obtained via session cookie)
private string? _webAccessToken;