Read XASSESSIONID in javascript

0
Hi,   How can I read the "XASSESSIONID" attribute in Javascript ? When I use the developer console of Chrome, I see the value in the cookie ; but when I read "document.cookie" variable, the XASSESSIONID attribute is not there ...   Thanks
asked
1 answers
1

Hi François,

The XASSESSIONID is returned with the HttpOnly flag:

image.png

As such, it is not readable by JavaScript.

answered