Get Refresh_Token import base64 import requests import webbrowser # Spotify API 配置 CLIENT_ID = "your_client_id" # 替换为你的 Client ID CLIENT_SECRET = "your_client_secret" # 替换为你的 Client Secret REDIRECT_URI = "http://localhost/callback" # 替换为你的重定向 URI...