aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/http/status/429/index.md
blob: cce35df317deb280cd8a5d37cf94f9fee2670092 (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
---
title: 429 Too Many Requests
slug: Web/HTTP/Status/429
translation_of: Web/HTTP/Status/429
---
{{HTTPSidebar}}

Le code de statut de réponse HTTP **`429 Too Many Requests`** indique que l'utilisateur a envoyé trop de requêtes en un temps donné.

Un en-tête [`Retry-After`](/fr/docs/Web/HTTP/Headers/Retry-After) peut être inclus dans cette réponse afin d'indiquer le temps à attendre pour effectuer une nouvelle requête.

## Statut

```
429 Too Many Requests
```

## Exemple

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

## Spécifications

| Spécification                                                | Titre                        |
| ------------------------------------------------------------ | ---------------------------- |
| [RFC 6585, section 4: 429 Too Many Requests](https://datatracker.ietf.org/doc/html/rfc6585#section-4) | Additional HTTP Status Codes |

## Voir aussi

- [`Retry-After`](/fr/docs/Web/HTTP/Headers/Retry-After)
- [HTTP/1.1 : Définitions des codes de statut (en anglais)](https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html)
- [Solution en Python : comment éviter l'erreur HTTP 429 en Python (en anglais)](https://stackoverflow.com/questions/22786068/how-to-avoid-http-error-429-too-many-requests-python)