How can I add a custom HTTP header to ajax request with js or jQuery?
Asked Answered
S

9

368

Does anyone know how to add or create a custom HTTP header using JavaScript or jQuery?

Samford answered 7/10, 2011 at 11:51 Comment(0)
S
653

There are several solutions depending on what you need...

If you want to add a custom header (or set of headers) to an individual request then just add the headers property:

// Request with custom header
$.ajax({
    url: 'foo/bar',
    headers: { 'x-my-custom-header': 'some value' }
});

If you want to add a default header (or set of headers) to every request then use $.ajaxSetup():

$.ajaxSetup({
    headers: { 'x-my-custom-header': 'some value' }
});

// Sends your custom header
$.ajax({ url: 'foo/bar' });

// Overwrites the default header with a new header
$.ajax({ url: 'foo/bar', headers: { 'x-some-other-header': 'some value' } });

If you want to add a header (or set of headers) to every request then use the beforeSend hook with $.ajaxSetup():

$.ajaxSetup({
    beforeSend: function(xhr) {
        xhr.setRequestHeader('x-my-custom-header', 'some value');
    }
});

// Sends your custom header
$.ajax({ url: 'foo/bar' });

// Sends both custom headers
$.ajax({ url: 'foo/bar', headers: { 'x-some-other-header': 'some value' } });

Edit (more info): One thing to be aware of is that with ajaxSetup you can only define one set of default headers and you can only define one beforeSend. If you call ajaxSetup multiple times, only the last set of headers will be sent and only the last before-send callback will execute.

Shrewsbury answered 1/2, 2013 at 22:2 Comment(15)
What happens if I define a new beforeSend when doing a $.ajax?Caryl
You can only define one beforeSend callback. If you call $.ajaxSetup({ beforeSend: func... }) twice then the second callback will be the only one that fires.Shrewsbury
Updated my answer to add more details about ajaxSetup.Shrewsbury
Hi all, headers: { 'x-my-custom-header': 'some value' } doesn't work in IE 8. it works fine in firefox and chrome. I have to send custom headers using IE 8. Have you some idea to make it work? ThxBeta
@Beta are you trying to do a cross domain (CORS) request or some other type of custom header? I've certainly used all of these techniques in IE8 and am certain they work. The one exception is xDomain requests where you need another technique in IE8.Shrewsbury
@Shrewsbury thx for your reply. My ajax request is in the same domain. $(document).ready(function() { $.ajax({ url: url, type: "POST", headers: { 'x-my-custom-header': 'some value' } }); });Beta
@user1940268, I think there must be something else going on outside of the posted code (possibly server-side when trying to read the headers). your ajax call looks right and I don't think I'm going to be able to help you here.Shrewsbury
Looks like it doesn't work with CORS Request (every browser). Is there a work around ?Costello
found my solution here stackoverflow.com/questions/8685678/…Costello
@Costello CORS has different requirements and, as you found out, beyond a few (very basic) headers, any additional will have to be whitelisted via the Access-Control-Request-Headers header.Shrewsbury
For my case, I wanted the http header accept value to be strictly just text/plain. ajax's accepts behavior really tripped me up. It kept adding an extra */* to the end, after my text/plain. Sigh. Specifying the headers works better.Vesperal
I get this error: Response to preflight request doesn't pass access control checkKuching
@Si8, that looks like a cross domain issue to me. You can't make a request from one domain to another. Try looking into CORS and see if that helps.Shrewsbury
These don't really work. I tried them and they change my request to options from post or getGlobule
Mind that in JS you will set the header with hyphens and it will be accessible from PHP using underscores prepended by HTTP_ Eg. $.ajaxSetup({headers:{'X-MY-CUSTOM-HEADER':'somevalue'}); can the be access from PHP via $_SERVER['HTTP_X_MY_CUSTOM_HEADER']Virgule
H
57

Or, if you want to send the custom header for every future request, then you could use the following:

$.ajaxSetup({
    headers: { "CustomHeader": "myValue" }
});

This way every future ajax request will contain the custom header, unless explicitly overridden by the options of the request. You can find more info on ajaxSetup here

Horrocks answered 16/7, 2012 at 7:50 Comment(2)
Where i really want to accomplish this, this doesn't seem to actually work.Malenamalet
Well you should make sure that the ajaxSetup is called before the actual ajax call. I don't know of any other reason why this wouldn't work :)Horrocks
H
30

You can also do this without using jQuery. Override XMLHttpRequest's send method and add the header there:

XMLHttpRequest.prototype.realSend = XMLHttpRequest.prototype.send;
var newSend = function(vData) {
    this.setRequestHeader('x-my-custom-header', 'some value');
    this.realSend(vData);
};
XMLHttpRequest.prototype.send = newSend;
Hypsometer answered 25/5, 2016 at 11:4 Comment(0)
L
22

Assuming JQuery ajax, you can add custom headers like -

$.ajax({
  url: url,
  beforeSend: function(xhr) {
    xhr.setRequestHeader("custom_header", "value");
  },
  success: function(data) {
  }
});
Labile answered 7/10, 2011 at 11:58 Comment(0)
M
21

Here's an example using XHR2:

function xhrToSend(){
    // Attempt to creat the XHR2 object
    var xhr;
    try{
        xhr = new XMLHttpRequest();
    }catch (e){
        try{
            xhr = new XDomainRequest();
        } catch (e){
            try{
                xhr = new ActiveXObject('Msxml2.XMLHTTP');
            }catch (e){
                try{
                    xhr = new ActiveXObject('Microsoft.XMLHTTP');
                }catch (e){
                    statusField('\nYour browser is not' + 
                        ' compatible with XHR2');                           
                }
            }
        }
    }
    xhr.open('POST', 'startStopResume.aspx', true);
    xhr.setRequestHeader("chunk", numberOfBLObsSent + 1);
    xhr.onreadystatechange = function (e) {
        if (xhr.readyState == 4 && xhr.status == 200) {
            receivedChunks++;
        }
    };
    xhr.send(chunk);
    numberOfBLObsSent++;
}; 

Hope that helps.

If you create your object, you can use the setRequestHeader function to assign a name, and a value before you send the request.

Manheim answered 7/10, 2011 at 11:58 Comment(4)
While this may have been correct in 2011, it's generally a good idea to not reinvent the wheel, and instead use an AJAX library like Zepto or jQuery.Procne
Unless you are trying to add a header to an existing XHR2 call and don't want to start rewriting it all to use jQuery just for that... At which point, @gryzzly has the only viable answer.Cateran
@AliGajani The problem is that certain applications or libraries (like THREE.js) don't use $.ajax* functions b/c they don't depend on jQuery and instead use XHR so this is the only valid option in those cases.Rhombic
@AliGajani Additionally, it's not just the network load time but the parsing time of the library. Plus, if you are not careful with what dependencies you add, you can quickly get a project with too many dependenciesChecked
S
19

You should avoid the usage of $.ajaxSetup() as described in the docs. Use the following instead:

$(document).ajaxSend(function(event, jqXHR, ajaxOptions) {
    jqXHR.setRequestHeader('my-custom-header', 'my-value');
});
Sandrasandro answered 12/7, 2015 at 19:39 Comment(0)
D
6

Assuming that you mean "When using ajax" and "An HTTP Request header", then use the headers property in the object you pass to ajax()

headers(added 1.5)

Default: {}

A map of additional header key/value pairs to send along with the request. This setting is set before the beforeSend function is called; therefore, any values in the headers setting can be overwritten from within the beforeSend function.

http://api.jquery.com/jQuery.ajax/

Debrahdebrecen answered 7/10, 2011 at 11:56 Comment(0)
C
3

"setRequestHeader" method of XMLHttpRequest object should be used

http://help.dottoro.com/ljhcrlbv.php

Cornhusk answered 7/10, 2011 at 11:59 Comment(0)
C
0

Use fetch

fetch("https://...", { headers: { "myHeader1": "myValue", ... }})

fetch("https://httpbin.org/status/200", { headers: { 
  "a-first--header": "val 1", 
  "a-second-header": "val 2"
}});

//Open chrome console> network tab to see request headers
Crosse answered 9/4, 2019 at 3:47 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.