我有以下返回 json 数据的 API,如下所示:
API:http://data.mtgox.com/api/1/BTCUSD/ticker
JSON:{"result":"success","return":{"high":
.......
使用 jquery 我尝试了以下操作,但它没有给我数据。
$.getJSON('http://data.mtgox.com/api/1/BTCUSD/ticker', function (data) {
alert(data);
});
和
$.ajax({
type: 'GET',
url: 'http://data.mtgox.com/api/1/BTCUSD/ticker',
dataType: 'json',
success: function (data) {
alert(data);
},
error: function (error) {
alert(error + "error");
}
});
但一开始我没有收到任何警报
第二个我收到错误警报。
如何使用 jQUERY 或 C# 读取这些数据?
谢谢