blob: f4c3fc5c00158a62c0d02cda90be74095de2a18a (
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
43
44
45
46
47
48
|
---
title: 429 Too Many Requests
slug: Web/HTTP/Status/429
tags:
- Código de status
- Erro
- Erro de cliente
- HTTP
- Referência(2)
- Status HTTP
translation_of: Web/HTTP/Status/429
---
<div>{{HTTPSidebar}}</div>
<p>O código de resposta HTTP <code><strong>429 Too Many Requests</strong></code> indica que o usuário enviou muitos pedidos em um determinado período de tempo.</p>
<p>Um header {{HTTPHeader("Retry-After")}} pode ser incluído na resposta indicando quanto tempo o usuário deve esperar antes de fazer um novo pedido.</p>
<h2 id="Status">Status</h2>
<pre class="syntaxbox">429 Too Many Requests</pre>
<h2 id="Exemplo">Exemplo</h2>
<pre>HTTP/1.1 429 Too Many Requests
Content-Type: text/html
Retry-After: 3600</pre>
<h2 id="Especificações">Especificações</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Especificações</th>
<th scope="col">Título</th>
</tr>
<tr>
<td>{{RFC("6585", "429 Too Many Requests" , "4")}}</td>
<td>Status HTTP adicionais</td>
</tr>
</tbody>
</table>
<h2 id="Veja_também">Veja também</h2>
<ul>
<li>{{HTTPHeader("Retry-After")}}</li>
</ul>
|