hI,
I want to know the number of followers of a Twitter account and I’ve been using the following code:
$.getJSON(‘http://twitter.com/users/MYACCOUNT.json?callback=?’,
function(data)
{
$(’#followers’).html(data.followers_count);
});
Unfortunately it seems it doesn’t work know. I guess it’s because of the new API.
Is there any way to fix it without authenticate?
Thanks.