In my jQuery script I have an Ajax call to an url like : http://[email protected].
When I made a request with $.ajax
or $.get
, jquery remove the tokenvalue
. So authentication failed.
$.ajax({
type: 'GET',
url: "http://[email protected]"
},
Why does jQuery remove it ? And how to fix that ?
Thanks.