How can I get a user's Google Buzz follower count? Can I use jQuery or something else?
问问题
109 次
1 回答
4
如果你想要的只是关注者数量,你甚至不需要 jQuery。只需使用Buzz API 中的JSONP支持,并调用关注者端点...
<html>
<head>
<script>
function followerCount(response) {
alert(response.data.totalResults);
}
</script>
<script src="https://www.googleapis.com/buzz/v1/people/googlebuzz/@groups/@followers?alt=json&callback=followerCount&max-results=0"></script>
</head>
</html>
于 2010-08-12T22:35:10.280 回答