Petfinder.com に電話して、ペットのリストを取得しようとしています。URL はhttp://api.petfinder.com/shelter.getPets?key=xxxxx&id=CA1469&format=jsonです
URLはJSON罰金を返すようです。しかし、電話をかけようとすると、「エラー」とステータス コード 0 が表示されます。jsonp を使用してみましたが、ステータスは 200 になりましたが、解析エラーが発生しました。xml に変更すると、ステータス 0 と「エラー」の結果が得られます。
$.ajax({
url: "http://api.petfinder.com/shelter.getPets?key=xxxx&id=CA1469&format=json",
dataType: "json",
type: "GET",
success: function (data) {
alert("hi");
},
error: function (jqXHR, exception) {
if (jqXHR.status === 0) {
alert('Not connect.\n Verify Network.');
} else if (jqXHR.status == 404) {
alert('Requested page not found. [404]');
} else if (jqXHR.status == 500) {
alert('Internal Server Error [500].');
} else if (exception === 'parsererror') {
alert('Requested JSON parse failed.');
} else if (exception === 'timeout') {
alert('Time out error.');
} else if (exception === 'abort') {
alert('Ajax request aborted.');
} else {
alert('Uncaught Error.\n' + jqXHR.responseText);
}
}
});