<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.0.23 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc tocindent="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-httpbis-client-hints-latest" category="std">

  <front>
    <title>HTTP Client Hints</title>

    <author initials="I." surname="Grigorik" fullname="Ilya Grigorik">
      <organization>Google</organization>
      <address>
        <email>ilya@igvita.com</email>
        <uri>https://www.igvita.com/</uri>
      </address>
    </author>

    <date year="2015" month="November" day="24"/>

    <area>Applications and Real-Time</area>
    <workgroup>HTTP Working Group</workgroup>
    <keyword>Content Negotiation</keyword>

    <abstract>


<t>An increasing diversity of Web-connected devices and software capabilities has created a need to deliver optimized content for each device.</t>

<t>This specification defines a set of HTTP request header fields, colloquially known as Client Hints, to address this. They are intended to be used as input to proactive content negotiation; just as the Accept header allows clients to indicate what formats they prefer, Client Hints allow clients to indicate a list of device and agent specific preferences.</t>



    </abstract>


    <note title="Note to Readers">


<t>The issues list for this draft can be found at <eref target="https://github.com/httpwg/http-extensions/labels/client-hints">https://github.com/httpwg/http-extensions/labels/client-hints</eref>.</t>


    </note>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>There are thousands of different devices accessing the web, each with different device capabilities and preference information. These device capabilities include hardware and software characteristics, as well as dynamic user and client preferences.</t>

<t>One way to infer some of these capabilities is through User-Agent (UA) detection against an established database of client signatures. However, this technique requires acquiring such a database, integrating it into the serving path, and keeping it up to date. However, even once this infrastructure is deployed, UA sniffing has numerous limitations:</t>

<t><list style="symbols">
  <t>UA detection cannot reliably identify all static variables</t>
  <t>UA detection cannot infer any dynamic client preferences</t>
  <t>UA detection requires an external device database</t>
  <t>UA detection is not cache friendly</t>
</list></t>

<t>A popular alternative strategy is to use HTTP cookies to communicate some information about the client. However, this approach is also not cache friendly, bound by same origin policy, and imposes additional client-side latency by requiring JavaScript execution to create and manage HTTP cookies.</t>

<t>This document defines a set of new request header fields that allow the client to perform proactive content negotiation <xref target="RFC7231"/> by indicating a list of device and agent specific preferences, through a mechanism similar to the Accept header which is used to indicate preferred response formats.</t>

<t>Client Hints does not supersede or replace the User-Agent header field. Existing device detection mechanisms can continue to use both mechanisms if necessary. By advertising its capabilities within a request header field, Client Hints allows for cache friendly and proactive content negotiation.</t>

<section anchor="notational-conventions" title="Notational Conventions">

<t>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in <xref target="RFC2119"/>.</t>

<t>This document uses the Augmented Backus-Naur Form (ABNF) notation of <xref target="RFC5234"/> with the list rule extension defined in <xref target="RFC7230"/>, Appendix B. It includes by reference the DIGIT rule from <xref target="RFC5234"/>; the OWS, field-name and quoted-string rules from <xref target="RFC7230"/>; and the parameter rule from <xref target="RFC7231"/>.</t>

</section>
</section>
<section anchor="client-hint-request-header-fields" title="Client Hint Request Header Fields">

<t>A Client Hint request header field is a HTTP header field that is used by HTTP clients to indicate configuration data that can be used by the server to select an appropriate response. Each one conveys a list of client preferences that the server can use to adapt and optimize the response.</t>

<t>This document defines a selection of Client Hint request header fields, and can be referenced by other specifications wishing to use the same syntax and processing model.</t>

<section anchor="sending-client-hints" title="Sending Client Hints">

<t>Clients control which Client Hint headers and their respective header fields are communicated, based on their default settings, user configuration and/or preferences. The user may be given the choice to enable, disable, or override specific hints.</t>

<t>The client and server, or an intermediate proxy, may use an opt-in mechanism to negotiate which fields should be reported to allow for efficient content adaption.</t>

</section>
<section anchor="server-processing-of-client-hints" title="Server Processing of Client Hints">

<t>Servers MAY respond with an optimized response based on one or more received hints from the client. When doing so, and if the resource is cacheable, the server MUST also emit a Vary response header field (<xref target="RFC7234"/>), and optionally Key (<xref target="I-D.ietf-httpbis-key"/>), to indicate which hints were used and whether the selected response is appropriate for a later request.</t>

<t>Further, depending on the used hint, the server MAY also need to emit additional response header fields to confirm the property of the response, such that the client can adjust its processing. For example, this specification defines “Content-DPR” response header field that MUST be returned by the server when the “DPR” hint is used to select the response.</t>

<section anchor="advertising-support-for-client-hints" title="Advertising Support for Client Hints">

<t>Servers can advertise support for Client Hints using the Accept-CH header or an equivalent HTML meta element with http-equiv attribute.</t>

<figure><artwork><![CDATA[
  Accept-CH = #token
]]></artwork></figure>

<t>For example:</t>

<figure><artwork><![CDATA[
  Accept-CH: DPR, Width, Viewport-Width, Downlink
]]></artwork></figure>

<t>When a client receives Accept-CH, it SHOULD append the Client Hint headers that match the advertised field-values. For example, based on Accept-CH example above, the client would append DPR, Width, Viewport-Width, and Downlink headers to all subsequent requests.</t>

</section>
<section anchor="interaction-with-caches" title="Interaction with Caches">

<t>When selecting an optimized response based on one or more Client Hints, and if the resource is cacheable, the server MUST also emit a Vary response header field (<xref target="RFC7234"/>) to indicate which hints were used and whether the selected response is appropriate for a later request.</t>

<figure><artwork><![CDATA[
  Vary: DPR
]]></artwork></figure>

<t>Above example indicates that the cache key should be based on the DPR header.</t>

<figure><artwork><![CDATA[
  Vary: DPR, Width, Downlink
]]></artwork></figure>

<t>Above example indicates that the cache key should be based on the DPR, Width, and Downlink headers.</t>

<t>Client Hints MAY be combined with Key (<xref target="I-D.ietf-httpbis-key"/>) to enable fine-grained control of the cache key for improved cache efficiency. For example, the server MAY return the following set of instructions:</t>

<figure><artwork><![CDATA[
  Key: DPR;partition=1.5:2.5:4.0
]]></artwork></figure>

<t>Above example indicates that the cache key should be based on the value of the DPR header with three segments: less than 1.5, 1.5 to less than 2.5, and 4.0 or greater.</t>

<figure><artwork><![CDATA[
  Key: Width;div=320
]]></artwork></figure>

<t>Above example indicates that the cache key should be based on the value of the Width header and be partitioned into groups of 320: 0-320, 320-640, and so on.</t>

<figure><artwork><![CDATA[
  Key: Downlink;partition=0.5:1.0:3.0:5.0:10
]]></artwork></figure>

<t>Above example indicates that the cache key should be based on the (Mbps) value of the Downlink header with six segments: less than 0.5, 0.5 to less than 1.0, 1.0 to less than 3.0, 3.0 to less than 5.0, 5.0 to less than 10; 10 or higher.</t>

</section>
</section>
</section>
<section anchor="the-dpr-client-hint" title="The DPR Client Hint">

<t>The “DPR” header field is a number that, in requests, indicates the client’s current Device Pixel Ratio (DPR), which is the ratio of physical pixels over CSS px of the layout viewport on the device.</t>

<figure><artwork><![CDATA[
  DPR = 1*DIGIT [ "." 1*DIGIT ]
]]></artwork></figure>

<t>If DPR occurs in a message more than once, the last value overrides all previous occurrences.</t>

<section anchor="confirming-selected-dpr" title="Confirming Selected DPR">

<t>The “Content-DPR” header field is a number that indicates the ratio between physical pixels over CSS px of the selected image response.</t>

<figure><artwork><![CDATA[
  Content-DPR = 1*DIGIT [ "." 1*DIGIT ]
]]></artwork></figure>

<t>DPR ratio affects the calculation of intrinsic size of image resources on the client - i.e. typically, the client automatically scales the natural size of the image by the DPR ratio to derive its display dimensions. As a result, the server must explicitly indicate the DPR of the selected image response whenever the DPR hint is used, and the client must use the DPR value returned by the server to perform its calculations. In case the server returned Content-DPR value contradicts previous client-side DPR indication, the server returned value must take precedence.</t>

<t>Note that DPR confirmation is only required for image responses, and the server does not need to confirm the resource width as this value can be derived from the resource itself once it is decoded by the client.</t>

<t>If Content-DPR occurs in a message more than once, the last value overrides all previous occurrences.</t>

</section>
</section>
<section anchor="the-width-client-hint" title="The Width Client Hint">

<t>The “Width” header field is a number that, in requests, indicates the resource width in physical px (i.e. intrinsic size of an image). The provided physical px value is a number rounded to the largest smallest following integer (i.e. ceiling value).</t>

<figure><artwork><![CDATA[
  Width = 1*DIGIT
]]></artwork></figure>

<t>If the resource width is not known at the time of the request or the resource does not have a display width, the Width header field may be omitted. If Width occurs in a message more than once, the last value overrides all previous occurrences.</t>

</section>
<section anchor="the-viewport-width-client-hint" title="The Viewport-Width Client Hint">

<t>The “Viewport-Width” header field is a number that, in requests, indicates the layout viewport width in CSS px. The provided CSS px value is a number rounded to the largest smallest following integer (i.e. ceiling value).</t>

<figure><artwork><![CDATA[
  Viewport-Width = 1*DIGIT
]]></artwork></figure>

<t>If Viewport-Width occurs in a message more than once, the last value overrides all previous occurrences.</t>

</section>
<section anchor="the-downlink-client-hint" title="The Downlink Client Hint">

<t>The “Downlink” header field is a number that, in requests, indicates the client’s maximum downlink speed in megabits per second (Mbps), as defined by the “downlinkMax” attribute in the W3C Network Information API.</t>

<figure><artwork><![CDATA[
  Downlink = 1*DIGIT [ "." 1*DIGIT ]
]]></artwork></figure>

<t>If Downlink occurs in a message more than once, the minimum value should be used to override other occurrences.</t>

</section>
<section anchor="the-save-data-hint" title="The Save-Data Hint">

<t>The “Save-Data” header field is a token that, in requests, indicates client’s preference for reduced data usage, due to high transfer costs, slow connection speeds, or other reasons.</t>

<figure><artwork><![CDATA[
  Save-Data = "on"
]]></artwork></figure>

<t>The token is a signal indicating explicit user opt-in into a reduced data usage mode on the client, and when communicated to origins allows them to deliver alternate content honoring such preference - e.g. smaller image and video resources, alternate markup, and so on.</t>

</section>
<section anchor="examples" title="Examples">

<t>For example, given the following request headers:</t>

<figure><artwork><![CDATA[
  DPR: 2.0
  Width: 320
  Viewport-Width: 320
]]></artwork></figure>

<t>The server knows that the device pixel ratio is 2.0, that the intended display width of requested resource is 160 CSS px (320 physical pixels at 2x resolution), and that the viewport width is 320 CSS px.</t>

<t>If the server uses above hints to perform resource selection for an image asset, it must confirm its selection via the Content-DPR response header to allow the client to calculate the appropriate intrinsic size of the image response. The server does not need to confirm resource width, only the ratio between physical pixels and CSS px of the selected image resource:</t>

<figure><artwork><![CDATA[
  Content-DPR: 1.0
]]></artwork></figure>

<t>The Content-DPR response header indicates to the client that the server has selected resource with DPR ratio of 1.0. The client may use this information to perform additional processing on the resource - for example, calculate the appropriate intrinsic size of the image resource such that it is displayed at the correct resolution.</t>

<t>Alternatively, the server could select an alternate resource based on the maximum downlink speed advertised in the request headers:</t>

<figure><artwork><![CDATA[
  Downlink: 0.384
]]></artwork></figure>

<t>The server knows that the client’s maximum downlink speed is 0.384Mbps (GPRS EDGE), and it may use this information to select an optimized resource - for example, an alternate image asset, stylesheet, HTML document, media stream, and so on.</t>

</section>
<section anchor="security-considerations" title="Security Considerations">

<t>Client Hints defined in this specification do not expose any new information about the user’s environment beyond what is already available to, and may be communicated by, the application at runtime via JavaScript - e.g. viewport and image display width, device pixel ratio, and so on.</t>

<t>However, implementors should consider the privacy implications of various methods to enable delivery of Client Hints - see “Sending Client Hints” section. For example, sending Client Hints on all requests may make information about the user’s environment available to origins that otherwise did not have access to this data (e.g. origins hosting non-script resources), which may or not be the desired outcome. The implementors may want to provide mechanisms to control such behavior via explicit opt-in, or other mechanisms. Similarly, the implementors should consider how and whether delivery of Client Hints is affected when the user is in “incognito” or similar privacy mode.</t>

</section>
<section anchor="iana-considerations" title="IANA Considerations">

<t>This document defines the “Accept-CH”, “DPR”, “Width”, and “Downlink” HTTP request fields, “Content-DPR” HTTP response field, and registers them in the Permanent Message Header Fields registry.</t>

<t><list style="symbols">
  <t>Header field name: DPR</t>
  <t>Applicable protocol: HTTP</t>
  <t>Status: standard</t>
  <t>Author/Change controller: IETF</t>
  <t>Specification document(s): [this document]</t>
  <t>Related information: for Client Hints</t>
  <t>Header field name: Width</t>
  <t>Applicable protocol: HTTP</t>
  <t>Status: standard</t>
  <t>Author/Change controller: IETF</t>
  <t>Specification document(s): [this document]</t>
  <t>Related information: for Client Hints</t>
  <t>Header field name: Viewport-Width</t>
  <t>Applicable protocol: HTTP</t>
  <t>Status: standard</t>
  <t>Author/Change controller: IETF</t>
  <t>Specification document(s): [this document]</t>
  <t>Related information: for Client Hints</t>
  <t>Header field name: Downlink</t>
  <t>Applicable protocol: HTTP</t>
  <t>Status: standard</t>
  <t>Author/Change controller: IETF</t>
  <t>Specification document(s): [this document]</t>
  <t>Related information: for Client Hints</t>
  <t>Header field name: Content-DPR</t>
  <t>Applicable protocol: HTTP</t>
  <t>Status: standard</t>
  <t>Author/Change controller: IETF</t>
  <t>Specification document(s): [this document]</t>
  <t>Related information: for Client Hints</t>
  <t>Header field name: Accept-CH</t>
  <t>Applicable protocol: HTTP</t>
  <t>Status: standard</t>
  <t>Author/Change controller: IETF</t>
  <t>Specification document(s): [this document]</t>
  <t>Related information: for Client Hints</t>
  <t>Header field name: Save-Data</t>
  <t>Applicable protocol: HTTP</t>
  <t>Status: standard</t>
  <t>Author/Change controller: IETF</t>
  <t>Specification document(s): [this document]</t>
  <t>Related information: for Client Hints</t>
</list></t>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference  anchor='RFC2119' target='http://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>



<reference  anchor='RFC5234' target='http://www.rfc-editor.org/info/rfc5234'>
<front>
<title>Augmented BNF for Syntax Specifications: ABNF</title>
<author initials='D.' surname='Crocker' fullname='D. Crocker' role='editor'><organization /></author>
<author initials='P.' surname='Overell' fullname='P. Overell'><organization /></author>
<date year='2008' month='January' />
<abstract><t>Internet technical specifications often need to define a formal syntax.  Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications.  The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power.  The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges.  This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='STD' value='68'/>
<seriesInfo name='RFC' value='5234'/>
<seriesInfo name='DOI' value='10.17487/RFC5234'/>
</reference>



<reference  anchor='RFC7230' target='http://www.rfc-editor.org/info/rfc7230'>
<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding' role='editor'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke' role='editor'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems.  This document provides an overview of HTTP architecture and its associated terminology, defines the &quot;http&quot; and &quot;https&quot; Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.</t></abstract>
</front>
<seriesInfo name='RFC' value='7230'/>
<seriesInfo name='DOI' value='10.17487/RFC7230'/>
</reference>



<reference  anchor='RFC7231' target='http://www.rfc-editor.org/info/rfc7231'>
<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding' role='editor'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke' role='editor'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems.  This document defines the semantics of HTTP/1.1 messages, as expressed by request methods, request header fields, response status codes, and response header fields, along with the payload of messages (metadata and body content) and mechanisms for content negotiation.</t></abstract>
</front>
<seriesInfo name='RFC' value='7231'/>
<seriesInfo name='DOI' value='10.17487/RFC7231'/>
</reference>



<reference  anchor='RFC7234' target='http://www.rfc-editor.org/info/rfc7234'>
<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Caching</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding' role='editor'><organization /></author>
<author initials='M.' surname='Nottingham' fullname='M. Nottingham' role='editor'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke' role='editor'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems.  This document defines HTTP caches and the associated header fields that control cache behavior or indicate cacheable response messages.</t></abstract>
</front>
<seriesInfo name='RFC' value='7234'/>
<seriesInfo name='DOI' value='10.17487/RFC7234'/>
</reference>



<reference anchor='I-D.ietf-httpbis-key'>
<front>
<title>The Key HTTP Response Header Field</title>

<author initials='R' surname='Fielding' fullname='Roy Fielding'>
    <organization />
</author>

<author initials='m' surname='mnot' fullname='mnot'>
    <organization />
</author>

<date month='October' day='18' year='2015' />

<abstract><t>The 'Key' header field for HTTP responses allows an origin server to describe the secondary cache key ([RFC7234], section 4.1) for a resource, by conveying what is effectively a short algorithm that can be used upon later requests to determine if a stored response is reusable for a given request.  Key has the advantage of avoiding an additional round trip for validation whenever a new request differs slightly, but not significantly, from prior requests.  Key also informs user agents of the request characteristics that might result in different content, which can be useful if the user agent is not sending request header fields in order to reduce the risk of fingerprinting.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-httpbis-key-00' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-httpbis-key-00.txt' />
</reference>




    </references>




  </back>
</rfc>

