Number of likes of Mitt Romney on Facebook decreasing constantly
11–17 of 17 posts
Re: Number of likes of Mitt Romney on Facebook decreasing constantly
#12Likes for Obama : 33.203.746
http://private.woutervdb.com/obama/
Likes for Romney : 12.053.114
Re: Number of likes of Mitt Romney on Facebook decreasing constantly
#13I actually love the idea of this tool in general. Would be neat to open it up where you can just paste in the URL of any FB page and get the counter/deltas! I'd also suggest adding a cumulative delta counter, rather than just the delta per poll. That way I can load up the page and come back an hour later and get an even better feel for the changes. Maybe also add a rate (delta/hour) field? Awesome work!
Also, thanks for the suggestions! I may implement them sooner or later, I've got a lot of other projects to do...
Re: Number of likes of Mitt Romney on Facebook decreasing constantly
#14Server is getting hotter and hotter, internet connection is getting slower and slower...
Why are you going via your server? Couldn't you have the JS get the data from Facebook's Graph API directly?
Re: Number of likes of Mitt Romney on Facebook decreasing constantly
#15Earlier quoted context omitted.
Why are you going via your server? Couldn't you have the JS get the data from Facebook's Graph API directly?
Yep, this page handled entirely client-side, with some analytics JS on top for good measure: setInterval( function() { $.getJSON( "https://graph.facebook.com/mittromney", function(results) { console.log("Mitt Romney Like Count: " + results.likes)})}, 5000) Edit: Love the idea, glad the page is out there! Great conversation starter.
Re: Number of likes of Mitt Romney on Facebook decreasing constantly
#16Earlier quoted context omitted.
Yep, this page handled entirely client-side, with some analytics JS on top for good measure: setInterval( function() { $.getJSON( "https://graph.facebook.com/mittromney", function(results) { console.log("Mitt Romney Like Count: " + results.likes)})}, 5000) Edit: Love the idea, glad the page is out there! Great conversation starter.
Haven't tried it, but isn't that blocked by Javascript's cross-domain protection?