aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/http/status/429/index.html
blob: 82b02e0e601204364ecc033b010a0c6ec95fac91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
title: 429 Too Many Requests
slug: Web/HTTP/Status/429
translation_of: Web/HTTP/Status/429
---
<div>{{HTTPSidebar}}</div>

<p>HTTP <code><strong>429 Too Many Requests</strong></code> код ответа указывает, что пользователь отправил слишком много запросов за последнее время ("ограничение скорости" или "rate limiting" ).</p>

<p>В этот ответ может быть включён  {{HTTPHeader("Retry-After")}}, указывающий, как долго ждать нового запроса.</p>

<h2 id="Статус">Статус</h2>

<pre class="syntaxbox">429 Too Many Requests</pre>

<h2 id="Пример">Пример</h2>

<pre>HTTP/1.1 429 Too Many Requests
Content-Type: text/html
Retry-After: 3600</pre>

<h2 id="Спецификации">Спецификации</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Спецификация</th>
   <th scope="col">Название</th>
  </tr>
  <tr>
   <td>{{RFC("6585", "429 Too Many Requests" , "4")}}</td>
   <td>Additional HTTP Status Codes</td>
  </tr>
 </tbody>
</table>

<h2 id="Смотрите_также">Смотрите также</h2>

<ul>
 <li>{{HTTPHeader("Retry-After")}}</li>
<li><a href="https://www.exai.com/blog/429-error">429 Too Many Requests</a></li>
</ul>