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?