diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
commit | 074785cea106179cb3305637055ab0a009ca74f2 (patch) | |
tree | e6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/pt-br/web/http/methods/get/index.html | |
parent | da78a9e329e272dedb2400b79a3bdeebff387d47 (diff) | |
download | translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2 translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip |
initial commit
Diffstat (limited to 'files/pt-br/web/http/methods/get/index.html')
-rw-r--r-- | files/pt-br/web/http/methods/get/index.html | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/files/pt-br/web/http/methods/get/index.html b/files/pt-br/web/http/methods/get/index.html new file mode 100644 index 0000000000..e3e6e63796 --- /dev/null +++ b/files/pt-br/web/http/methods/get/index.html @@ -0,0 +1,78 @@ +--- +title: GET +slug: Web/HTTP/Methods/GET +tags: + - HTTP + - Método GET + - Método Request + - Referencia +translation_of: Web/HTTP/Methods/GET +--- +<div>{{HTTPSidebar}}</div> + +<div>O <strong>método HTTP GET</strong> solicita uma representação do recurso especificado. Solicitações usando GET só devem recuperar dados.</div> + +<div> </div> + +<table class="properties"> + <tbody> + <tr> + <th scope="row">Requisição tem corpo</th> + <td>Não</td> + </tr> + <tr> + <th scope="row">Resposta bem-sucedida tem corpo</th> + <td>Sim</td> + </tr> + <tr> + <th scope="row"><a href="https://developer.mozilla.org/pt-BR/docs/Glossary/Safe">Seguro</a></th> + <td>Sim</td> + </tr> + <tr> + <th scope="row"><a href="https://developer.mozilla.org/pt-BR/docs/Glossary/Idempotent">Idempotente</a></th> + <td>Sim</td> + </tr> + <tr> + <th scope="row"><a href="https://developer.mozilla.org/pt-BR/docs/Glossary/Cacheable">Cacheável</a></th> + <td>Sim</td> + </tr> + <tr> + <th scope="row">Permitido em formulários HTML</th> + <td>SIm</td> + </tr> + </tbody> +</table> + +<h2 id="Sintaxe">Sintaxe</h2> + +<pre class="syntaxbox">GET /index.html +</pre> + +<h2 id="Especificações">Especificações</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Especificação</th> + <th scope="col">Título</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> + +<h2 id="Compatibilidade_com_navegadores">Compatibilidade com navegadores</h2> + +<p class="hidden">A tabela de compatibilidade nesta página é gerada a partir de dados estruturados. Se você quiser contribuir com os dados, consulte https://github.com/mdn/browser-compat-data e envie-nos um <em>pull request</em>.</p> + +<p>{{Compat("http.methods.GET")}}</p> + +<p> </p> + +<h2 id="Veja_também">Veja também</h2> + +<ul> + <li>{{HTTPHeader("Range")}}</li> +</ul> |