Back to Content

Sec-GPC header

files/en-us/web/http/reference/headers/sec-gpc/index.md

latest1.7 KB
Original Source

{{SeeCompatTable}}

The HTTP Sec-GPC {{Glossary("request header")}} is part of the Global Privacy Control (GPC) mechanism to indicate whether the user consents to a website or service selling or sharing their personal information with third parties.

The specification does not define how the user can withdraw or grant consent for website.

<table class="properties"> <tbody> <tr> <th scope="row">Header type</th> <td>{{Glossary("Request header")}}</td> </tr> <tr> <th scope="row">{{Glossary("Forbidden request header")}}</th> <td>Yes (<code>Sec-</code> prefix)</td> </tr> </tbody> </table>

Syntax

http
Sec-GPC: <preference>

Directives

  • <preference>
    • : A value of 1 means the user has indicated that they prefer their information not be shared with, or sold to, third parties. Otherwise, the header is not sent, which indicates that either the user has not made a decision or the user is okay with their information being shared with or sold to third parties.

Examples

Reading Global Privacy Control status from JavaScript

The user's GPC preference can also be read from JavaScript using the {{domxref("Navigator.globalPrivacyControl")}} or {{domxref("WorkerNavigator.globalPrivacyControl")}} property:

js
navigator.globalPrivacyControl; // "false" or "true"

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also