重定向到localhost

时间:2019-06-20 01:44:29

标签: python spotify spotipy

我正在弄乱Spotipy,并尝试了他们在文档中提供的一些示例代码。我已经设置了一个开发人员帐户,包含所有代码,并且正在将重定向uri运行到本地主机。

我能够使我的代码运行一次,但是我复制的网址无效。之后,当我尝试运行代码时,我会不断在Google上获得ERR_TIMED_OUT。我在设置本地主机时做错了什么(我在那里没有很多经验)?

index.html基本上是一个空的html文件。

PORT = 8000
Handler = http.server.SimpleHTTPRequestHandler

with socketserver.TCPServer(("127.0.0.1", PORT), Handler) as httpd:
    print("serving at port", PORT)

    # CALL TO SPOTIFY API

    scope = 'user-library-read'
    username = sys.argv[1]
    c_id = sys.argv[2]
    c_secret = sys.argv[3]
    redirect = 'https://127.0.0.1:8000/index.html'

    token = util.prompt_for_user_token(username, scope,c_id,c_secret,redirect)

0 个答案:

没有答案