Looks like it's easy to add custom HTTP headers to your websocket client with any HTTP header client which supports this, but I can't find how to do it with the JSON API.
Yet, it seems that there should be support these headers in the spec.
Anyone has a clue on how to achieve it?
var ws = new WebSocket("ws://example.com/service");
Specifically, I need to be able to send an HTTP Authorization header.
Technically, you will be sending these headers through the connect function before the protocol upgrade phase. This worked for me in a
nodejs
project:HTTP Authorization header problem can be addressed with the following:
Then, a proper Basic Authorization HTTP header will be set with the provided
username
andpassword
. If you need Basic Authorization, then you're all set.I want to use
Bearer
however, and I resorted to the following trick: I connect to the server as follows:And when my code at the server side receives Basic Authorization header with non-empty username and empty password, then it interprets the username as a token.
Updated
Short answer: No, but basic auth works
Longer answer:
There is no method in the JavaScript WebSockets API for specifying additional headers for the client/browser to send. However the HTTP path ("GET /xyz"), basic auth header ("Authorization") and protocol header ("Sec-WebSocket-Protocol") can be specified in the WebSocket constructor.
The Authorization header is generated from the username and password (or just username) field of the WebSocket URI:
The above results in the following header with the string "username:password" base64 encoded:
I have tested basic auth in Chrome 55 and Firefox 50 and verified that the basic auth info is indeed negotiated with the server (this may not work in Safari).
The Sec-WebSocket-Protocol header (which is sometimes extended to be used in websocket specific authentication) is generated from the optional second argument to the WebSocket constructor:
The above results in the following headers:
and
Thanks to Dmitry Frank's for the basic auth answer
More of an alternate solution, but all modern browsers send the domain cookies along with the connection, so using:
End up with the request connection headers:
You can not send custom header when you want to establish WebSockets connection using JavaScript WebSockets API. You can use
Subprotocols
headers by using the second WebSocket class constructor:and then you can get the Subprotocols headers using
Sec-WebSocket-Protocol
key on the server.There is also a limitation, your Subprotocols headers values can not contain a comma (
,
) !Sending Authorization header is not possible.
Attaching a token query parameter is an option. However, in some circumstances, it may be undesirable to send your main login token in plain text as a query parameter because it is more opaque than using a header and will end up being logged whoknowswhere. If this raises security concerns for you, an alternative is to use a secondary JWT token just for the web socket stuff.
Create a REST endpoint for generating this JWT, which can of course only be accessed by users authenticated with your primary login token (transmitted via header). The web socket JWT can be configured differently than your login token, e.g. with a shorter timeout, so it's safer to send around as query param of your upgrade request.
Create a separate JwtAuthHandler for the same route you register the SockJS eventbusHandler on. Make sure your auth handler is registered first, so you can check the web socket token against your database (the JWT should be somehow linked to your user in the backend).