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.

link|improve this question

I hop that this wont work you shuld not be able to tell the server that your in an other env then you are from a client. – megakorre Aug 9 '11 at 11:21
2  
You can and you should be able to tell the server that you're in a different enviroment than you actually are - and plenty of browsers do allow you o change your User-Agent string. That beeing said I do not know of such a mechanism controllable from JavaScript. – Daniel Baulig Aug 9 '11 at 11:25
On the client-side browser, I need to get the webpage source from a server that performs server-side browser sniffing. Any other ideas? – XP1 Aug 9 '11 at 11:35
feedback

2 Answers

up vote 1 down vote accepted

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

MyHttp.setRequestHeader "User-Agent", "MyCustomUser"

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.

link|improve this answer
Interesting. However, I do not use Internet Explorer. – XP1 Aug 10 '11 at 4:25
I guess that I will accept this answer for now because it may be useful to someone. – XP1 Aug 14 '11 at 16:59
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.