Reputation: 117
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
Upvotes: 2
Views: 1605
Reputation: 2758
If you just want to do one-off / ad-hoc request to Spotify API, you can use https://developer.spotify.com/console/ . There you can choose which API to call and just fill in the fields needed (including OAuth Token, where they have Get Token
button to guide you).
Upvotes: 0
Reputation: 3266
According to spotify developer news you can't do a call to api without authentication.
YOu need to use requests to authenticat first.
Upvotes: 1
Reputation: 1453
The client id should be sent using client_id variable
Spotify Web API Authorization Guide
Upvotes: 3