A cloud-based identity and access management service for securing user authentication and resource access
Hi anonymous user · Thank you for reaching out.
I don't find the throttling for Azure AD Token endpoint exposed publicly. However, if your application makes too many calls to the token endpoint, in order to acquire token, you will get HTTP 429 - Too many requests. You can configure your application to begin throttling using an exponential backoff approach (as mentioned below), on receiving HTTP error code 429.
- Wait 1 second, retry request
- If still throttled wait 2 seconds, retry request
- If still throttled wait 4 seconds, retry request
- If still throttled wait 8 seconds, retry request
- If still throttled wait 16 seconds, retry request
At this point, you should not be getting HTTP 429 response codes.
-----------------------------------------------------------------------------------------------------------
Please "Accept the answer" if the information helped you. This will help us and others in the community as well.