与Python Spotify的API认证(Spotify API authentication w

2019-10-21 10:35发布

我想Spotify的API在用户进行身份验证,但它让我返回错误代码“invalid_client”。 我采取的是在一个Python Django的解决方案,这是我的代码:

headers = {'Authorization': 'Basic '+standard_b64encode(client_id)+standard_b64encode(client_secret)}
r = requests.post('https://accounts.spotify.com/api/token', {'code': code, 'redirect_uri': redirect_uri, 'grant_type': grant_type, 'headers': headers}).json()

任何想法,为什么它不工作?

Answer 1:

在Spotify的API文档,它是:需要授权。 Base 64编码包含客户端ID和客户端密钥字符串。 该字段的格式必须为:授权:基本编码的base64(CLIENT_ID:client_secret)

所以我想你应该做的:

import base64
'Authorization' : 'Basic ' + base64.standard_b64encode(client_id + ':' + client_secret)

它的工作对我来说尝试。 如果它不工作,我的代码是:

@staticmethod
def loginCallback(request_handler, code):
    url = 'https://accounts.spotify.com/api/token'
    authorization = base64.standard_b64encode(Spotify.client_id + ':' + Spotify.client_secret)

    headers = {
        'Authorization' : 'Basic ' + authorization
        } 
    data  = {
        'grant_type' : 'authorization_code',
        'code' : code,
        'redirect_uri' : Spotify.redirect_uri
        } 

    data_encoded = urllib.urlencode(data)
    req = urllib2.Request(url, data_encoded, headers)

    try:
        response = urllib2.urlopen(req, timeout=30).read()
        response_dict = json.loads(response)
        Spotify.saveLoginCallback(request_handler, response_dict)
        return
    except urllib2.HTTPError as e:
        return e

希望能帮助到你!



Answer 2:

你确定你提供client_idclient_secret正确的格式? 综观文档,它想以分开:

也可以尝试先运行,卷曲相同的流量,然后用蟒蛇复制。



文章来源: Spotify API authentication with Python