以下のコードで、外部 URL からデータを取得しようとしています。これを実行しようとすると、401-不正アクセス エラーが発生します。ご意見をお聞かせください
<script type='text/javascript'>
function checkBlueLight() {
$('#trBlueLight').hide();
$.getJSON('http://.../Lights/getBlueLight?callback=?', function (data) {
if (data.expDate != null) {
$('#trBlueLight').show();
} else {
$('#trBlueLight').hide();
}
});
}
</script>