HI All,
I am trying to use RESTAPi to add document. For authentication, i have written below ajax call.
$.ajax({
url: "/otcs/cs.exe/api/v1/auth",
dataType: "json",
data: {
"username": "myid",
"password": "mypass"
},
headers: {
"Content-Type": "application/x-www-form-urlencoded"
},
method: "POST",
success: function (data) {
ticketVar = data.ticket;
},
error: function () {
alert("Error! Try again!");
}
});
This is working fine in chrome but not working in IE. We have IE11, i am not sure what is wrong with this ajax call in IE. Has anyone faced such issue?
Thanks,
Alok