What parameters on a $.ajax
must I set to try and mask the AJAX-request as a normal request? I guess it has to do with the right headers.
I think a big part of the problem is that when working on a local .html-file, jQuery sets the header-value for Origin
to null
.
Is there any way to take out the Origin-header?
At this moment I'm getting different results from the same URL if I surf to it through the web-browser and when I do an jQuery AJAX-request.
Due to Same Origin Policy enforced by all modern browsers, this is not possible.
The only thing that differs in an AJAX request sent with jQuery compared to a normal request (whatever you mean by normal request) is the X-Requested-With: XMLHttpRequest
HTTP header that is added. This header could be removed like this:
$.ajax({
url: '/foo',
type: 'POST',
data: { bar: 'baz' },
beforeSend: function(xhr) {
xhr.setRequestHeader(
'X-Requested-With',
{
toString: function() { return ''; }
}
);
},
success: function(result) {
alert(result);
}
});
or globally, for all AJAX requests on your site:
$.ajaxSetup({
beforeSend: function(xhr) {
xhr.setRequestHeader(
'X-Requested-With',
{
toString: function() { return ''; }
}
);
}
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With