diff options
author | julieng <julien.gattelier@gmail.com> | 2021-09-17 20:50:13 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-12 07:57:56 +0200 |
commit | 0fe03b92344c0f9b0d4ada2146d4480997ab2e25 (patch) | |
tree | b2b704c9e2987a769980ad0d619ff1bd879c7e34 /files/fr/web/http/methods/get | |
parent | df12ec2617159d79d2ea959389358ef52423f9ff (diff) | |
download | translated-content-0fe03b92344c0f9b0d4ada2146d4480997ab2e25.tar.gz translated-content-0fe03b92344c0f9b0d4ada2146d4480997ab2e25.tar.bz2 translated-content-0fe03b92344c0f9b0d4ada2146d4480997ab2e25.zip |
convert content to md
Diffstat (limited to 'files/fr/web/http/methods/get')
-rw-r--r-- | files/fr/web/http/methods/get/index.md | 90 |
1 files changed, 40 insertions, 50 deletions
diff --git a/files/fr/web/http/methods/get/index.md b/files/fr/web/http/methods/get/index.md index cb39182435..d3ecf1b1f4 100644 --- a/files/fr/web/http/methods/get/index.md +++ b/files/fr/web/http/methods/get/index.md @@ -8,65 +8,55 @@ tags: translation_of: Web/HTTP/Methods/GET original_slug: Web/HTTP/Méthode/GET --- -<div>{{HTTPSidebar}}</div> +{{HTTPSidebar}} -<p>La <strong>méthode HTTP GET</strong> demande une représentation de la ressource spécifiée. Les requêtes GET doivent uniquement être utilisées afin de récupérer des données.</p> +La **méthode HTTP GET** demande une représentation de la ressource spécifiée. Les requêtes GET doivent uniquement être utilisées afin de récupérer des données. <table class="properties"> - <tbody> - <tr> - <th scope="row">La requête a un corps</th> - <td>Non</td> - </tr> - <tr> - <th scope="row">Une réponse de succès a un corps</th> - <td>Oui</td> - </tr> - <tr> - <th scope="row">{{Glossary("Safe","Sûre")}}</th> - <td>Oui</td> - </tr> - <tr> - <th scope="row">{{Glossary("Idempotent","Idempotente")}}</th> - <td>Oui</td> - </tr> - <tr> - <th scope="row">{{Glossary("Cacheable","Peut être mise en cache")}}</th> - <td>Oui</td> - </tr> - <tr> - <th scope="row">Autorisée dans les formulaires HTML</th> - <td>Oui</td> - </tr> - </tbody> + <tbody> + <tr> + <th scope="row">La requête a un corps</th> + <td>Non</td> + </tr> + <tr> + <th scope="row">Une réponse de succès a un corps</th> + <td>Oui</td> + </tr> + <tr> + <th scope="row">{{Glossary("Safe","Sûre")}}</th> + <td>Oui</td> + </tr> + <tr> + <th scope="row">{{Glossary("Idempotent","Idempotente")}}</th> + <td>Oui</td> + </tr> + <tr> + <th scope="row"> + {{Glossary("Cacheable","Peut être mise en cache")}} + </th> + <td>Oui</td> + </tr> + <tr> + <th scope="row">Autorisée dans les formulaires HTML</th> + <td>Oui</td> + </tr> + </tbody> </table> -<h2 id="Syntaxe">Syntaxe</h2> +## Syntaxe -<pre class="syntaxbox">GET /index.html -</pre> + GET /index.html -<h2 id="Spécifications">Spécifications</h2> +## Spécifications -<table class="standard-table"> - <tbody> - <tr> - <th scope="col">Spécification</th> - <th scope="col">Titre</th> - </tr> - <tr> - <td>{{RFC("7231", "GET", "4.3.1")}}</td> - <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td> - </tr> - </tbody> -</table> +| Spécification | Titre | +| ---------------------------------------- | ------------------------------------------------------------- | +| {{RFC("7231", "GET", "4.3.1")}} | Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content | -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> +## Compatibilité des navigateurs -<p>{{Compat("http/methods", "GET")}}</p> +{{Compat("http/methods", "GET")}} -<h2 id="Voir_aussi">Voir aussi</h2> +## Voir aussi -<ul> - <li>{{HTTPHeader("Range")}}</li> -</ul> +- {{HTTPHeader("Range")}} |