From e3f9c65362e910dc809e202b730165fbbdd9b3b6 Mon Sep 17 00:00:00 2001 From: Shreyans Sheth Date: Mon, 19 Mar 2018 14:24:21 +0530 Subject: [PATCH] Updated Rate Limiting Cite The current link was broken, fixed it. A good article on rate limiting indeed. --- docs/api-guide/throttling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/throttling.md b/docs/api-guide/throttling.md index 9657b00eb..de66396a8 100644 --- a/docs/api-guide/throttling.md +++ b/docs/api-guide/throttling.md @@ -190,7 +190,7 @@ The following is an example of a rate throttle, that will randomly throttle 1 in def allow_request(self, request, view): return random.randint(1, 10) != 1 -[cite]: https://dev.twitter.com/docs/error-codes-responses +[cite]: https://developer.twitter.com/en/docs/basics/rate-limiting [permissions]: permissions.md [identifing-clients]: http://oxpedia.org/wiki/index.php?title=AppSuite:Grizzly#Multiple_Proxies_in_front_of_the_cluster [cache-setting]: https://docs.djangoproject.com/en/stable/ref/settings/#caches