blob: 71552da494d1b6506b58f41dd3eef9d6f5deddb1 (
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
|
---
title: Cookie
slug: Web/HTTP/Headers/Cookie
tags:
- Cookies
- HTTP
- Reference
- header
- request
translation_of: Web/HTTP/Headers/Cookie
---
<div>{{HTTPSidebar}}</div>
<p>Der <strong><code>Cookie</code></strong> HTTP Request Header enthält gespeicherte <a href="/en-US/docs/Web/HTTP/Cookies">HTTP Cookies</a> welche zuvor vom Server mit dem {{HTTPHeader("Set-Cookie")}} Header gesendet wurden.</p>
<p>Der <code>Cookie</code> Header ist optional und kann weggelassen werden falls z.B. die Einstellungen für Privatsphäre im Browser keine Cookies zulassen.</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">Header Typ</th>
<td>{{Glossary("Request Header")}}</td>
</tr>
<tr>
<th scope="row">{{Glossary( "Forbidden header name" , "Verbotener Header-Name")}}</th>
<td>Ja</td>
</tr>
</tbody>
</table>
<h2 id="Syntax">Syntax</h2>
<pre class="syntaxbox">Cookie: <cookie-list>
Cookie: name=value
Cookie: name=value; name2=value2; name3=value3</pre>
<dl>
<dt><cookie-list></dt>
<dd>Eine Liste von Name/Wert-Paaren von folgender Form <code><cookie-name>=<cookie-value></code>. Mehrere Einträge in der Liste werden durch ein Semikolon gefolgt von einem Leerzeichen getrennt (<code>'; '</code>).</dd>
</dl>
<h2 id="Beispiele">Beispiele</h2>
<pre>Cookie: PHPSESSID=298zf09hf012fh2; csrftoken=u32t4o3tb3gg43; _gat=1;</pre>
<h2 id="Spezifikationen">Spezifikationen</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Spezifikationen</th>
<th scope="col">Titel</th>
</tr>
<tr>
<td>{{RFC("6265", "Cookie", "5.4")}}</td>
<td>HTTP State Management Mechanism</td>
</tr>
</tbody>
</table>
<h2 id="Browser_Kompatibilität">Browser Kompatibilität</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.Cookie")}}</p>
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li>{{HTTPHeader("Set-Cookie")}}</li>
<li>{{domxref("Document.cookie")}}</li>
</ul>
|