我在哪里将环境变量用于API凭据?

时间:2016-11-09 01:54:21

标签: python api spotify credentials

我正在尝试使用Spotify API,它需要客户端凭据。我已经集成了spotipy,当我不需要请求用户信息(即只是从艺术家下载曲目名称)时,它工作正常,但我希望访问音频功能。

在什么文件/脚本中以及如何包含凭据?

这是他们在oauth2.py文件中所说的:

    You can either provid a client_id and client_secret to the
    constructor or set SPOTIPY_CLIENT_ID and SPOTIPY_CLIENT_SECRET
    environment variables

https://github.com/plamere/spotipy/blob/master/examples/audio_features.py

1 个答案:

答案 0 :(得分:1)

我会开始here - Authorized Requests。然后你可以简单地使用这个例子:

token = util.prompt_for_user_token(username)
if token:
    sp = spotipy.Spotify(auth=token)

开始工作,然后抓住你需要的东西。

有关完整文档,请参阅this page。有关使用 SpotifyClientCredentials 的详细信息,请here