admin管理员组文章数量:1344518
I have a Tomcat server that only serves static files(html, css, js). When the request es in it gets intercepted by a proxy server. Proxy server authenticates the user and adds a userId
field to the header and forwards it my Tomcat server.
How can I access userId
that has been stored in the header from javascript?
Thank you
I have a Tomcat server that only serves static files(html, css, js). When the request es in it gets intercepted by a proxy server. Proxy server authenticates the user and adds a userId
field to the header and forwards it my Tomcat server.
How can I access userId
that has been stored in the header from javascript?
Thank you
Share Improve this question asked Jun 4, 2014 at 17:57 gumenimedagumenimeda 8357 gold badges16 silver badges43 bronze badges 3- Javascript is executed on the client side. Unless you send back the userid as part of the data from Tomcat, you cannot do this. – thatidiotguy Commented Jun 4, 2014 at 18:02
- stackoverflow./questions/220231/… Dupe, I think – miguel-svq Commented Jun 4, 2014 at 18:02
- what if I make a request from this page and then get a header as part of response? I can do that? – gumenimeda Commented Jun 4, 2014 at 20:19
2 Answers
Reset to default 5You can't, BUT...
If such header is send to the browser you could make an ajax request and get that value from it.
This little javascript could be useful in your case. Watch out, use it with caution and sanitize or change the URL depending on your needs, this is just a "concept", not a copy-paste solution for every case. In many other cases this is not a valid solution, cause it is not the header of the loaded document, but another request. Anyway the server, content-type, etc can be use quite safely.
xmlhttp = new XMLHttpRequest();
xmlhttp.open("HEAD", document.URL ,true);
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4) {
console.log(xmlhttp.getAllResponseHeaders());
}
}
xmlhttp.send();
EDIT: Ooops, seem already anwser that part also... Accessing the web page's HTTP Headers in JavaScript Didn't read it all.
Use below script for access userId
var req = new XMLHttpRequest();
req.open('GET', document.location, false);
req.send(null);
headers = req.getAllResponseHeaders().split("\n")
.map(x=>x.split(/: */,2))
.filter(x=>x[0])
.reduce((ac, x)=>{ac[x[0]] = x[1];return ac;}, {});
console.log(headers.userId);
本文标签: htmlHow to get HTTP header from JavascriptStack Overflow
版权声明:本文标题:html - How to get HTTP header from Javascript? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743748268a2532166.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论