如何获得用户的Google Buzz关注者计数?我可以使用jQuery或其他东西吗?
答案 0 :(得分:4)
如果你想要的只是嗡嗡声跟随者计数,你甚至不需要jQuery。只需使用Buzz API中的JSONP支持,然后调用followers endpoint ...
即可<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>