Rate Limiting
To provide a reliable and consistent experience for all users, we have implemented rate limiting on the /oauth/token
endpoint.
This means there are limits on how many authentication requests can be made within a specific timeframe.
The rate limit allows up to 180 requests per minute per clientId
and userId
.
If this limit is exceeded, the API will return an error with the message:
{
"errorCode": "AUTHENTICATION FAILED",
"message": "Too many requests, please try again after [X] seconds."
}
Updated 2 days ago