Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there anything in the header of an HTTP request that would allow me to differentiate between an AJAX call and a direct browser request from a given client? Are the user agent strings usually the same regardless?

share|improve this question

2 Answers

up vote 28 down vote accepted

If you use Prototype, jQuery, Mootools or YUI you should find a X-Requested-With:XMLHttpRequest header which will do the trick for you. It should be possible to insert whatever header you like with other libraries.

At the lowest level, given a XMLHttpRequest or XMLHTTP object, you can set this header with the setRequestHeader method as follows:

xmlHttpRequest.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
share|improve this answer
trac.dojotoolkit.org/ticket/5801 according to above, jQuery, Prototype, YUI, Mootools send the header – Gene T Oct 19 '08 at 11:05
Good call, I'll edit. Though I don't use jQuery, I just verified it did it by checking the source here jqueryjs.googlecode.com/svn/trunk/jquery/src/ajax.js – Paul Dixon Oct 19 '08 at 11:28
...and Mootools can be checked here github.com/mootools/mootools-core/tree/master/Source/Request/… – Paul Dixon Oct 19 '08 at 11:29
...and YUI can be checked here developer.yahoo.com/yui/docs/connection.js.html – Paul Dixon Oct 19 '08 at 11:38

After some research, it looks like the best approach would be to simply specify a custom user agent string when making AJAX calls and then checking for this custom user agent string on the server.

share|improve this answer
If you're going to do that then why not simply append an extra query parameter to distinguish AJAX requests instead? – John Topley Oct 19 '08 at 8:55
1  
Indeed. The extra query parameter method is more reliable than a custom header or UA string, as you never know what proxies are going to do. Security proxies hiding the UA string is not uncommon. – bobince Oct 19 '08 at 9:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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