Get artist from spotify api using ClientID

I was using spotify api to get info about a artist with the code below:

spotify_artist = requests.get('https://api.spotify.com/v1/search?q=U2"&type=artist").json()
print(spotify_artist['artists']['items'][0]['genres'])

But I get:

{
  "error": {
    "status": 401,
    "message": "No token provided"
  }
}

So I get a spotify clientID but when I use it its not working:

https://api.spotify.com/v1/search?q=U2%22&type=artist&ClientID=key

(key is the ClientID of the spotify)

But I get the same error:

{
  "error": {
    "status": 401,
    "message": "No token provided"
  }
}

Do you know why?

I generate a key (cliente id) for the example you can see that dont works properly:

https://api.spotify.com/v1/search?q=U2&type=artist&client_id=38a48a7baeae43b8a74a52fc25a85cd0


The client id should be sent using client_id variable

Spotify Web API Authorization Guide


According to spotify developer news you can't do a call to api without authentication.

YOu need to use requests to authenticat first.

链接地址: http://www.djcxy.com/p/55658.html

上一篇: 使用Spotify Uris连接曲目名称和艺术家名称

下一篇: 使用ClientID从spotify API获取艺术家