vote up 3 vote down star
3

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?

flag

3 Answers

vote up 20 vote down check

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');
link|flag
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/… – Paul Dixon Oct 19 '08 at 11:28
...and Mootools can be checked here github.com/mootools/mootools-core/… – Paul Dixon Oct 19 '08 at 11:29
...and YUI can be checked here developer.yahoo.com/yui/docs/… – Paul Dixon Oct 19 '08 at 11:38
vote up 0 vote down

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.

link|flag
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
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
vote up -1 vote down

tranks my brother, solution my problems =D love (L)

link|flag

Your Answer

Get an OpenID
or

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