Here is my code.
$.ajax(this.url, {
        type: "GET",
        //dataType: "json",
        beforeSend: function (xhr) {
            xhr.setRequestHeader("x-token", token)
        },
        success: function (data) {
            console.log(data);
        },
        error: function(){
            console.log('error');
        } 
    });
I am not able to send ajax request by that code. I also try hearder: {"x-token": token}, In place of beforeSend: but its also not working for me.
