How can I get a user's Google Buzz follower count? Can I use jQuery or something else?

link|improve this question

38% accept rate
feedback

1 Answer

up vote 5 down vote accepted

if all you want is buzz follower count, you don't even need jQuery. Just use the JSONP support in the Buzz API, and call the 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>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.