blob: e20c4ac05652bf63852ac5a02edef1ad8b52c02d (
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
|
---
title: 428 Precondition Required
slug: Web/HTTP/Status/428
translation_of: Web/HTTP/Status/428
---
<div>{{HTTPSidebar}}</div>
<p>O codigo de resposta HTTP <code><strong>428 Precondition Required</strong></code> indica que o servidor precisa que a requisição seja <a href="/en-US/docs/Web/HTTP/Conditional_requests">condicional</a>.</p>
<p>Normalmente, isto significa que um cabeçalho pré-requisito, como o {{HTTPHeader("If-Match")}}, <strong>está faltando</strong>.</p>
<p>Quando o cabeçalho pré-requisito <strong>não é o mesmo</strong> esperado pelo servidor, a resposta deve ser {{HTTPStatus(412)}} <code>Precondition Failed</code>.</p>
<h2 id="Status">Status</h2>
<pre class="syntaxbox">428 Precondition Required</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("6585", "428 Precondition Required" , "3")}}</td>
<td>Additional HTTP Status Codes</td>
</tr>
</tbody>
</table>
<h2 id="Ver_também">Ver também</h2>
<ul>
<li><a href="/en-US/docs/Web/HTTP/Conditional_requests">HTTP conditional requests</a></li>
<li>{{HTTPHeader("If-Match")}}</li>
<li>{{HTTPStatus(412)}}</li>
</ul>
|