Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm making custom share buttons for my website (Facebook, Twitter, StumbleUpon, etc.). For Facebook, I have this snippet.

jQuery.getJSON("https://graph.facebook.com/http://sampleurl.com/post.html/&callback=?", function(data) {
        var fbshares = 0;
        if (data.shares) {
            fbshares = data.shares;
        }
        jQuery('a.fbcount').html(fbshares);
    });

So when <a href='http://www.facebook.com/sharer.php' class='fbcount'></a> is called, it will display the number of times the post was shared, and that number will also be a link to the respective sharing tool URL. If it wasn't shared, it would display a 0 count.

I'd like to do the same for StumbleUpon (views) and Google Plus (count) but after checking out the JSON documentation, I noticed StumbleUpon had Views nested under Result.

Can anyone show me how to call the number of views for StumbleUpon and counts for Google Plus?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.