blob: 73f2cc3185e6bacaae0d8864285c339f5e189340 (
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
77
78
79
80
81
82
83
84
|
---
title: Device-Memory
slug: Web/HTTP/Headers/Device-Memory
tags:
- Cabeçalho HTTP
- Client hints
- Device Memory API
- HTTP
- cabeçalho
translation_of: Web/HTTP/Headers/Device-Memory
---
<div>{{HTTPSidebar}}{{securecontext_header}}{{SeeCompatTable}}</div>
<p>O cabeçalho <code><strong>Device-Memory</strong></code> é um cabeçalho da <a href="/en-US/docs/Web/API/Device_Memory_API">Device Memory API</a> que funciona como os cabeçalhos <a href="/en-US/docs/Glossary/Client_hints">Client Hints</a> que representão a quantidade aproximada de RAM que o dispositivo do cliente possui.</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">Tipo de cabeçalho</th>
<td>{{Glossary("Request 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). O servidor pode optar em receber o cabeçalho <code>Device-Memory</code> do cliente mandando os cabeçalhos de resposta {{HTTPHeader("Accept-CH")}} e {{HTTPHeader("Accept-CH-Lifetime")}}.</p>
</div>
<h2 id="Sintaxe">Sintaxe</h2>
<p>A quantidade de RAM no dispositivo pode ser usada como variável de pegada, The amount of device RAM can be used as a fingerprinting variable, então os valores para este cabeçalho são intencionalmente grosseiros para reduzir potenciais usos indesejados. O cabeçalho pode ter os seguintes valores: <code>0.25</code>, <code>0.5</code>, <code>1</code>, <code>2</code>, <code>4</code>, <code>8</code>.</p>
<pre class="syntaxbox notranslate">Device-Memory: <number>
</pre>
<h2 id="Exemplos">Exemplos</h2>
<p>O servidor precisa primeiro optar por aceitar o cabeçalho <code>Device-Memory</code> mandando os cabeçalhos de resposta {{HTTPHeader("Accept-CH")}} contendo <code>Device-Memory</code> e {{HTTPHeader("Accept-CH-Lifetime")}}.</p>
<pre class="notranslate">Accept-CH: Device-Memory
Accept-CH-Lifetime: 86400
</pre>
<p>Então nas requisições subsequentes, o cliente enviará o cabeçalho <code>Device-Memory</code> de volta:</p>
<pre class="notranslate">Device-Memory: 1
</pre>
<h2 id="Especificações">Especificações</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Especificação</th>
<th scope="col">Status</th>
<th scope="col">Comentário</th>
</tr>
<tr>
<td>{{SpecName("Device Memory","#sec-device-memory-client-hint-header","Device-Memory")}}</td>
<td>{{Spec2('Device Memory')}}</td>
<td>Definição inicial.</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilidade_de_navegador">Compatibilidade de navegador</h2>
<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
<p>{{Compat("http.headers.Device-Memory")}}</p>
<h2 id="Veja_também">Veja também</h2>
<ul>
<li><a href="/en-US/docs/Web/API/Device_Memory_API">Device Memory API</a></li>
<li>{{HTTPHeader("Accept-CH")}}</li>
<li>{{HTTPHeader("Accept-CH-Lifetime")}}</li>
<li>{{HTTPHeader("Vary")}}</li>
<li>{{DOMxRef("Navigator.deviceMemory")}}</li>
</ul>
|