From a6017a05067c84464f84c7d289aa3bd1ac2814b0 Mon Sep 17 00:00:00 2001 From: Damian Mooyman Date: Thu, 17 Apr 2014 16:35:09 +1200 Subject: [PATCH] API HTTP 429 Allowed for use with rate limiting methods --- control/HTTPResponse.php | 1 + 1 file changed, 1 insertion(+) diff --git a/control/HTTPResponse.php b/control/HTTPResponse.php index b8e1d18ec..8b4cd9412 100644 --- a/control/HTTPResponse.php +++ b/control/HTTPResponse.php @@ -44,6 +44,7 @@ class SS_HTTPResponse { 416 => 'Request Range Not Satisfiable', 417 => 'Expectation Failed', 422 => 'Unprocessable Entity', + 429 => 'Too Many Requests', 500 => 'Internal Server Error', 501 => 'Not Implemented', 502 => 'Bad Gateway',