diff --git a/main.go b/main.go
index 5dd8838..d0d3482 100644
--- a/main.go
+++ b/main.go
@@ -15,7 +15,7 @@ type Env struct {
 
 // Grab some required spotify credentials from the environment
 var spotifyClientID = os.Getenv("SPOTIFY_ID")
-var spotifyClientSecret = os.Getenv("SPOTIFY_SECRET")
+var spotifyClientSecret = os.Getenv("SPOTIFY_TOKEN")
 
 func setupRouter(env *Env, spotifyID string, spotifySecret string) *gin.Engine {
     var r *gin.Engine = gin.Default()