From da1228082ac01957c9235af4b696da7a11d8d561 Mon Sep 17 00:00:00 2001
From: Urko
Please note that the exact method of displaying the response will depend on the specifics of your application and its user interface.
- -To protect the service from potential denial-of-service (DoS) attacks, we have implemented rate limiting on our - server. This is done using a middleware in the Fiber framework.
-The current configuration allows a maximum of 5 requests per client within a 30-minute window. If a client - exceeds this limit, further requests will be temporarily blocked until the rate falls below the limit.
-This is achieved with the following configuration:
+To protect the service from potential denial-of-service (DoS) attacks, we have implemented rate limiting on + our + server. This is done using a middleware in the Fiber framework.
+The current configuration allows a maximum of 5 requests per client within a 30-minute window. If a client + exceeds this limit, further requests will be temporarily blocked until the rate falls below the limit.
+This is achieved with the following configuration:
-+-s.app.Use(limiter.New(limiter.Config{ Max: 5, @@ -215,8 +216,9 @@
Please be aware of this limit when integrating with our API to ensure a smooth user experience.
+Please be aware of this limit when integrating with our API to ensure a smooth user experience.
+