Geek7 commited on
Commit
e27c3fe
·
verified ·
1 Parent(s): f12f326

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -7,8 +7,8 @@ app = Flask(__name__)
7
  CORS(app)
8
 
9
  # Access the secrets from environment variables in Hugging Face
10
- CLIENT_ID = os.getenv('v1') # Your Client ID
11
- CLIENT_SECRET = os.getenv('v2') # Your Client Secret
12
  REDIRECT_URI = 'https://geek7-spotifypod.hf.space/callback'
13
  SPOTIFY_AUTH_URL = "https://accounts.spotify.com/authorize"
14
  SPOTIFY_TOKEN_URL = "https://accounts.spotify.com/api/token"
 
7
  CORS(app)
8
 
9
  # Access the secrets from environment variables in Hugging Face
10
+ CLIENT_ID = os.environ.get("v1") # Your Client ID
11
+ CLIENT_SECRET = os.environ.get("v2") # Your Client Secret
12
  REDIRECT_URI = 'https://geek7-spotifypod.hf.space/callback'
13
  SPOTIFY_AUTH_URL = "https://accounts.spotify.com/authorize"
14
  SPOTIFY_TOKEN_URL = "https://accounts.spotify.com/api/token"