atmosphere-javascript
atmosphere-javascript copied to clipboard
Header QueryString max length reached
I trying to send a JWT token inside atmosphere header using:
this.request.headers.Authorization = 'Bearer ' + authenticationToken;
My token is big so I tried to use real header (not query string to send headers):
this.request.attachHeadersAsQueryString = false;
Query string are now empty but there is no additionnal headers on ajaxRequestsHeaders.
up
@fstn Contribution welcomed