blob: 9141ecefbf05c817e73605dd3b298496f536afac (
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
|
---
title: Accept-CH
slug: Web/HTTP/Headers/Accept-CH
tags:
- Client hints
- Dicas do Cliente
- HTTP
- HTTP Header
translation_of: Web/HTTP/Headers/Accept-CH
---
<div>{{HTTPSidebar}}{{securecontext_header}}{{SeeCompatTable}}</div>
<p>O cabeçalho <code><strong>Accept-CH</strong></code> é colocado pelo servidor para especificar quais cabeçalhos <a href="/en-US/docs/Glossary/Client_hints">Client Hints</a> o cliente deve incluir nas requisições subsequentes.</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">Tipo de cabeçalho</th>
<td>{{Glossary("Response header")}}</td>
</tr>
<tr>
<th scope="row">{{Glossary("Forbidden header name")}}</th>
<td>?</td>
</tr>
</tbody>
</table>
<div class="blockIndicator note">
<p><strong>Nota:</strong> Client Hints são acessíveis somente em origens seguras (via TLS). Os cabeçalhos Accept-CH e Accept-CH-Lifetime devem ser persistidos por todas as requisições seguras para assegurar que os Client Hints são enviados com segurança.</p>
</div>
<h2 id="Sintaxe">Sintaxe</h2>
<pre class="syntaxbox">Accept-CH: <lista de client hints>
</pre>
<h2 id="Exemplos">Exemplos</h2>
<pre>Accept-CH: DPR, Viewport-Width
Accept-CH: Width
Accept-CH-Lifetime: 86400
Vary: DPR, Viewport-Width, Width
</pre>
<div class="blockIndicator note">
<p><strong>Nota:</strong> Lembre de <a href="https://developer.mozilla.org/en-US/docs/Glossary/Client_hints#Varying_Client_Hints">variar a resposta</a> baseado nos client hints aceitos.</p>
</div>
<h2 id="Browser_compatibility">Compatibilidade com navegadores</h2>
<p>{{Compat("http.headers.Accept-CH")}}</p>
<h2 id="Veja_também">Veja também</h2>
<ul>
<li>{{HTTPHeader("Accept-CH-Lifetime")}}</li>
<li>{{HTTPHeader("Vary")}}</li>
</ul>
|