次のようにajaxリクエストがあります:
permissionRequestModel.showApprovers = function () {
$.ajax({
url: "http://ec6484646848compute-1.amazonaws.com/api/Request/permission?appid=1&opertype=requestor,
type: "GET",
contentType: "application/json",
dataType: "json",
error: function(){
alert("failed");
},
success: function (data) {
alert("Success");
}
});
};
これは失敗していますが、要求されたURLはChromeのRESTクライアントでJSON応答を正しく返しています。私はここで何が間違っているのですか?