$(function() {
$.ajax({
type: "GET",
dataType: "jsonp",
cache: false,
url: "https://api.instagram.com/v1/users/self/media/recent/?access_token=",
success: function(data) {
for (var i = 0; i < 20; i++) {
$("#pics").append("<a target='_blank' href='" + data.data[i].link + "'><img src='" + data.data[i].images.low_resolution.url + "'></img></a>");
$("#text").append("<p>"+data.data[i].caption.text+"</p>");
}
}
});
});
上午試圖讓Instagram的飼料API,代碼工作正常,但我有錯誤TypeError: data.data[i].caption is null
,飼料文本沒有顯示所有我得到的只有3形式20 json中的元素。類型錯誤:data.data [I] .caption是空的Instagram API
請分享API響應 – brk
檢查鏈接API,我把http://jsoneditoronline.org/?id=17c05e938eeb42d37c330b814432e300 @brk –