我正在尝试使用Blockchain.info API获得比特币地址信息,但是它不起作用。我总是得到相同的错误:

XMLHttpRequest cannot load https://blockchain.info/address/13DKdDeZcdLbGoNquWz8nHBnVpfBVkDitz?format=json. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://127.0.0.1:57366' is therefore not allowed access.

我的代码是:
$.getJSON("https://blockchain.info/address/13DKdDeZcdLbGoNquWz8nHBnVpfBVkDitz?format=json",
function(data) {$('#blockchain').append(JSON.stringify(data));
});

我已经尝试将相同的代码与另一个API一起使用,并且可以正常工作:
$.getJSON("http://btc.blockr.io/api/v1/address/txs/13DKdDeZcdLbGoNquWz8nHBnVpfBVkDitz",
function(data) {$('#blockr').append(JSON.stringify(data));
});

问题是我需要一些仅区块链API可用的信息。

任何的想法?

最佳答案

尝试改用dataType: 'jsonp':

$.ajax({
    url: 'https://blockchain.info/address/13DKdDeZcdLbGoNquWz8nHBnVpfBVkDitz?format=json',
    dataType: 'jsonp',
    success: function (data) {
        $('#blockchain').append(JSON.stringify(data));
    },
    error: function () {}
});

10-06 07:34