Type in your question below and we'll check to see what answers we can find...
Loading article...
Submitting...
If you couldn't find any answers in the previous step then we need to post your question in the community and wait for someone to respond. You'll be notified when that happens.
Simply add some detail to your question and refine the title if needed, choose the relevant category, then post.
Before we can post your question we need you to quickly make an account (or sign in if you already have one).
Don't worry - it's quick and painless! Just click below, and once you're logged in we'll bring you right back here and post your question. We'll remember what you've already typed in so you won't have to do it again.
Please see below the most popular frequently asked questions.
Loading article...
Loading faqs...
Please see below the current ongoing issues which are under investigation.
Loading issue...
Loading ongoing issues...
Plan
Premium
Country
Philippines
My Question or Issue
My first app worked earlier. But after one loop through a 700-song playlist, it started giving me an Error 429. Normally this would be fine, but there's also no 'Retry-After' in the HTTPS response header. It's been six hours and I still get the same error.
I asked my friend to re-create my app in their account and try to run my program, but even on a newly created Spotify Developer account and a newly generated client id/secret, the same error occurs.
# this works and returns me tracks from the playlist_id
response = sp.playlist_items(playlist_id)
print(response)
# but this gives me an http status code 429
response = sp.audio_features(song_id)
print(response)
The whole error:
Max Retries reached
urllib3.exceptions.ResponseError: too many 429 error responses
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
...
...
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='api.spotify.com', port=443): Max retries exceeded with url: /v1/audio-features/?ids=4TTV7EcfroSLWzXRY6gLv6 (Caused by ResponseError('too many 429 error responses'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
...
...
requests.exceptions.RetryError: HTTPSConnectionPool(host='api.spotify.com', port=443): Max retries exceeded with url: /v1/audio-features/?ids=4TTV7EcfroSLWzXRY6gLv6 (Caused by ResponseError('too many 429 error responses'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
...
...
spotipy.exceptions.SpotifyException: http status: 429, code:-1 - /v1/audio-features/?ids=4TTV7EcfroSLWzXRY6gLv6:
Max Retries, reason: too many 429 error responses