blob: 7f8aa0307e217f6e6f41d40826264bdb750e95c1 (
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
49
50
51
|
---
title: 101 Switching Protocol
slug: Web/HTTP/Status/101
tags:
- Code de statut
- HTTP
- Informatif
- Reference
- WebSockets
translation_of: Web/HTTP/Status/101
---
<div>{{HTTPSidebar}}</div>
<p>Le code de réponse HTTP <code><strong>101 Switching Protocol</strong></code> indique que le protocole a changé, comme demandé par le client via l'en-tête {{HTTPHeader("Upgrade")}}.</p>
<p>Le serveur envoie alors une réponse avec un en-tête {{HTTPHeader("Upgrade")}} qui indique le nouveau protocole utilisé.</p>
<h2 id="Statut">Statut</h2>
<pre class="syntaxbox">101 Switching Protocol</pre>
<h2 id="Exemples">Exemples</h2>
<p>Les changements de protocole peuvent être utilisés avec <a href="/fr/docs/WebSockets">WebSockets</a>.</p>
<pre>HTTP/1.1 101 Switching Protocols
Upgrade: websocket
Connection: Upgrade</pre>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Titre</th>
</tr>
<tr>
<td>{{RFC("7231", "101 Switching Protocol" , "6.2.2")}}</td>
<td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
</tr>
</tbody>
</table>
<h2 id="Voir_aussi">Voir aussi</h2>
<ul>
<li><a href="/fr/docs/WebSockets">WebSockets</a></li>
<li>{{HTTPHeader("Upgrade")}}</li>
<li>{{HTTPStatus("426")}}<code> Upgrade Required</code></li>
</ul>
|