Geek7 commited on
Commit
187db01
·
verified ·
1 Parent(s): 7d46a4d

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +48 -0
app.py ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from flask import Flask, request, jsonify, redirect
2
+ import requests
3
+ import os
4
+ from flask_cors import CORS
5
+
6
+ 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 = 'http://127.0.0.1:5000/callback'
13
+ SPOTIFY_AUTH_URL = "https://accounts.spotify.com/authorize"
14
+ SPOTIFY_TOKEN_URL = "https://accounts.spotify.com/api/token"
15
+ SPOTIFY_API_URL = "https://api.spotify.com/v1"
16
+
17
+ # Get Spotify authorization URL
18
+ @app.route('/login')
19
+ def login():
20
+ scopes = "user-read-private user-read-email"
21
+ auth_url = f"{SPOTIFY_AUTH_URL}?response_type=code&client_id={CLIENT_ID}&scope={scopes}&redirect_uri={REDIRECT_URI}"
22
+ return redirect(auth_url)
23
+
24
+ # Callback to handle the access token
25
+ @app.route('/callback')
26
+ def callback():
27
+ code = request.args.get('code')
28
+ auth_response = requests.post(SPOTIFY_TOKEN_URL, data={
29
+ "grant_type": "authorization_code",
30
+ "code": code,
31
+ "redirect_uri": REDIRECT_URI,
32
+ "client_id": CLIENT_ID,
33
+ "client_secret": CLIENT_SECRET,
34
+ })
35
+ response_data = auth_response.json()
36
+ access_token = response_data.get("access_token")
37
+ return jsonify({"access_token": access_token})
38
+
39
+ # Fetch data from Spotify API
40
+ @app.route('/api/podcasts')
41
+ def get_podcasts():
42
+ token = request.args.get('token') # Pass access_token as a query param
43
+ headers = {"Authorization": f"Bearer {token}"}
44
+ response = requests.get(f"{SPOTIFY_API_URL}/browse/categories/podcasts", headers=headers)
45
+ return jsonify(response.json())
46
+
47
+ if __name__ == '__main__':
48
+ app.run(debug=True)