We are having mobile app where user can place order. In back-end we are using Clover API to create orders on the Clover and Doing Payment.
After migrating to OAuth token as per https://docs.clover.com/docs/legacy-token-migration-flow, now we have started receiving 429 Error frequently.
{ "message": "429 Too Many Requests", "error": { "code": "processing_error", "message": "429 Too Many Requests" } }
I have checked documentation and I believe we might be hitting Rate Limit as per this link: https://docs.clover.com/docs/429-too-many-requests
Here are few questions:
1. Why are we getting this Rate Limit only after migrating to Short lived Token?
2. We were not getting this Rate Limit with Non-Expiring tokens which we were using previously.
3. Is there any possibilities of requesting higher Rate Limit?
4. Is there any other way to get rid of this Rate Limit issue other than using Retry Logic as mentioned Rate Limit documentation?