Slow down, you're making too many requests.
Please retry again in 5 seconds.
Error code: user_10_secs_limit.
I created a theme that uses await ajax(/t/${this.args.topic.id}.json); . This gets rate-limited due to excessive requests. How can I avoid this? I noticed the restriction is flagged as a user-level limit , not an IP-based limit.
@truman is your theme component doing this for many topics? What exactly are you trying to accomplish? You should either see if you can combine the calls, for instance by tagging the topics and then retrieving them by tag in a single call, and/or you should figure out a cache mechanism.