Thrown when the API rate limit is exceeded.
Deezer imposes a limit of 50 requests per 5 seconds.
When this error occurs, you should wait before making new requests.
Example
try { awaitclient.getArtist(27); } catch (error) { if (errorinstanceofDeezerQuotaExceededError) { // Wait for 5 seconds before retrying awaitnewPromise(resolve=>setTimeout(resolve, 5000)); awaitclient.getArtist(27); } }
Thrown when the API rate limit is exceeded. Deezer imposes a limit of 50 requests per 5 seconds. When this error occurs, you should wait before making new requests.
Example