4
我想從reddit獲得某個URL的分數。要添加「與reddit的份額(計數)」鏈接:在Reddit上使用jQuery getJSON獲取URL的分數
function redditCounter(url) {
// Get number of counts from reddit JSON api
// $.getJSON('http://www.reddit.com/api/info.json?url='+url+'',
$.getJSON('http://www.reddit.com/api/info.json?url=http://stackoverflow.com/q/811074/1288',
function(data) {
count = 0;
if (data.children.count() > 0) {
first_child = data.children[0];
alert(first_child.score);
}
});
}
當你調用的URL,捲曲,或者您的瀏覽器,結果就像Reddits API documentation描述。有一個兒童陣列,其中包含一個數字的分數。
然而,$.getJSON
會返回一個空的答案,在螢幕上移動時會看到它。
這是通過reddit的保護方法嗎?或者我使用getJSON錯誤?
這是一個很好的答案,它有助於非常感謝! – Jake 2013-09-26 11:07:11