Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. HTTP
  3. Reference
  4. Headers
  5. Report-To

Report-To header

Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see thecompatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.

Non-standard: This feature is not standardized. We do not recommend using non-standard features in production, as they have limited browser support, and may change or be removed. However, they can be a suitable alternative in specific cases where no standard option exists.

Warning:This header has been replaced by theReporting-Endpoints HTTP response header.It is a deprecated part of an earlier iteration of theReporting API specification.

The HTTPReport-Toresponse header allows website administrators to define named groups of endpoints that can be used as the destination for warning and error reports, such as CSP violation reports,Cross-Origin-Opener-Policy reports, deprecation reports, or other generic violations.

Report-To is often used in conjunction with other headers that select a group of endpoints to use for a particular kind of report.For example, theContent-Security-Policy headerreport-to directive can be used to select the group used for reporting CSP violations.

Header typeResponse header
CORS-safelisted response headerNo

Syntax

http
Report-To: <json-field-value>
<json-field-value>

One or more endpoint-group definitions, defined as a JSON array that omits the surrounding[ and] markers.Each object in the array has the following members:

group

A name for the group of endpoints.

max_age

The time in seconds that the browser should cache the reporting configuration.

endpoints

An array of one or more URLs where the reports in the group should be sent.

Examples

Setting a CSP violation report endpoint

This example shows how a server might useReport-To to define a group of endpoints, and then set the group as the location where CSP violation reports are sent.

First a server might send a response with theReport-To HTTP response header as shown below.This specifies a group ofurl endpoints identified by the group namecsp-endpoints.

http
Report-To: { "group": "csp-endpoints",              "max_age": 10886400,              "endpoints": [                { "url": "https://example.com/reports" },                { "url": "https://backup.com/reports" }              ] }

The server can then specify that it wants this group to be the target for sending CSP violation reports by setting the group name as the value of thereport-to directive:

http
Content-Security-Policy: script-src https://example.com/; report-to csp-endpoints

Given the headers above, anyscript-src CSP violations would result in violation reports being sent to both of theurl values listed inReport-To.

Specifying multiple reporting groups

The example below demonstrates aReport-To header that specifies multiple endpoint groups.Note that each group has a unique name, and that the groups are not bounded by the array markers.

http
Report-To: { "group": "csp-endpoint-1",              "max_age": 10886400,              "endpoints": [                { "url": "https://example.com/csp-reports" }              ] },            { "group": "hpkp-endpoint",              "max_age": 10886400,              "endpoints": [                { "url": "https://example.com/hpkp-reports" }              ] }

We can select an endpoint group as the target for violation reports by name, in the same way as we did in the previous example:

http
Content-Security-Policy: script-src https://example.com/; report-to csp-endpoint-1

Specifications

This header is no longer part of any specification.It was previously part of theReporting API.

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp