我构建了Flask应用程序,用户可以使用Spotify帐户登录并查看顶级艺术家,曲目等。我的代码可以正常工作,但是每次新用户登录时,我都必须手动将URL复制并粘贴到控制台以进行身份验证。是否有任何解决方案可自动执行此过程?
scope = 'user-top-read'
token = util.prompt_for_user_token(username, scope,client_id='client_id' client_secret='client_secret', redirect_uri='http://localhost:50518/callback')
spotify = spotipy.Spotify(auth=token)