aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/http/methods/get/index.html
blob: 393096e6c621efff005d0bc464176780e604e95f (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
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="Browser_compatibility">Compatibilidade com navegadores</h2>

<p>{{Compat("http.methods.GET")}}</p>

<p> </p>

<h2 id="Veja_também">Veja também</h2>

<ul>
 <li>{{HTTPHeader("Range")}}</li>
</ul>