Back to Content

Sec-CH-UA-Full-Version header

files/en-us/web/http/reference/headers/sec-ch-ua-full-version/index.md

latest2.1 KB
Original Source

{{Deprecated_Header}}{{SecureContext_Header}}

[!NOTE] This is being replaced by the {{HTTPHeader("Sec-CH-UA-Full-Version-List")}}.

The HTTP Sec-CH-UA-Full-Version {{Glossary("request header")}} is a user agent client hint which provides the user-agent's full version string.

<table class="properties"> <tbody> <tr> <th scope="row">Header type</th> <td> {{Glossary("Request header")}}, <a href="/en-US/docs/Web/HTTP/Guides/Client_hints">Client hint</a> </td> </tr> <tr> <th scope="row">{{Glossary("Forbidden request header")}}</th> <td>Yes (<code>Sec-</code> prefix)</td> </tr> </tbody> </table>

Syntax

http
Sec-CH-UA-Full-Version: <version>

Directives

  • <version>
    • : A string containing the full version number, like "96.0.4664.93".

Examples

Using Sec-CH-UA-Full-Version

A server requests the Sec-CH-UA-Full-Version header by including the {{HTTPHeader("Accept-CH")}} in a response to any request from the client, using the name of the desired header as a token:

http
HTTP/1.1 200 OK
Accept-CH: Sec-CH-UA-Full-Version

The client may choose to provide the hint, and add the Sec-CH-UA-Full-Version header to subsequent requests. For example, the client might add the header as shown:

http
GET /my/page HTTP/1.1
Host: example.site

Sec-CH-UA: " Not A;Brand";v="99", "Chromium";v="96", "Google Chrome";v="96"
Sec-CH-UA-Mobile: ?0
Sec-CH-UA-Full-Version: "96.0.4664.110"
Sec-CH-UA-Platform: "Windows"

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also