Based on this SO post it sounds like the library throws that error when the Trello API server responds with a 429. Right?
If that is the case, then your script is hitting some API rate limits: Rate Limits Do you have any sort of request throttling enabled in the script?
Side note: I have expired the token that was included in that screenshot. Trello tokens should be kept secret (doubly so when the API key is included!) as they are used to access an entire Trello account.
Based on this SO post it sounds like the library throws that error when the Trello API server responds with a 429. Right?
If that is the case, then your script is hitting some API rate limits: Rate Limits Do you have any sort of request throttling enabled in the script?
That sounds about right! Unfortunately, when testing, we never had any issues with limits, so we didn’t implement any throttling solutions. learned something today!
Side note: I have expired the token that was included in that screenshot. Trello tokens should be kept secret (doubly so when the API key is included!) as they are used to access an entire Trello account.