Open In App

HTTP headers | Sec-WebSocket-Accept

The HTTP headers are used for passing additional information with an HTTP request or response between the client and the server. They are grouped as general-headers, request-headers, response-headers, entity-headers. The Sec-WebSocket-Accept header falls under the response-type headers category. It is used by the server to intimate the client that it understood. It was a WebSocket connection and it is ready to open connection. This comes handy for a reverse-proxy server as it can understand the WebSocket handshake and not to make a useless cache. The Sec-WebSocket-Accept header must not appear more than once in an HTTP response.

Note: The HTTP headers usually contain a case-insensitive name followed by a colon (:), then by its value. White-space before the value is ignored here.



Syntax:

Sec-WebSocket-Accept: <hashed key>

Directives: The HTTP Sec-WebSocket-Accept header accepts a single directive that mentioned above and described below:



Below example will illustrate the HTTP Sec-WebSocket-Accept header:

Example: In this example, the server sends 101 response codes if the incoming connection is a WebSocket connection to the client.

101 Switching Protocols
Upgrade: websocket
Connection: Upgrade
Sec-WebSocket-Accept: MTMyNThFQUZBNS1FOTE0LTQ3REEtOTVDQS1DNUFCMERDODVCMTE=
Sec-WebSocket-Extensions: deflate-frame
Sec-WebSocket-Protocol: soap

Note: This header is not stable there are few research is going on right now on this header.

Supported Browsers: The browsers are compatible with HTTP Sec-WebSocket-Accept header are listed below:

Article Tags :