How to spoof the user agent in a GET request using JavaScript?
This is not allowed:
xmlHttpRequest.setRequestHeader("User-Agent", "...");
http://www.w3.org/TR/XMLHttpRequest/#the-setrequestheader-method
I'm using Opera 11.50 Build 1074.
|
How to spoof the user agent in a GET request using JavaScript? This is not allowed:
http://www.w3.org/TR/XMLHttpRequest/#the-setrequestheader-method I'm using Opera 11.50 Build 1074.
| |||||||||
feedback
|
|
You can't do this in a half-decent browser because of security issues surrounding it. You don't want XSS scripts to be changing request headers and running rampant on your site. However I believe there's a workaround in IE if you use VBScript (!!!): http://msdn.microsoft.com/en-us/library/ms766589%28v=vs.85%29.aspx
I actually had to do this for a project couple weeks back. The alternative is to have a web page on your site dedicated to forwarding a GET request, changing the appropriate headers as necessary. | |||||
feedback
|
|
In short: You can't due to built-in cross-domain limitations. One way "around" that was to write a proxy-webservice and let the server spoof whatever headers you need spoofed. | |||
|
feedback
|