Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to get the number of fans of a facebook page in simple text without using facebook API? I have been searching on google, but none of them works, which can be because of change in facebook api. I don't want to include the api because i want to add that piece of code in a theme, which will be used by multiple people. Thanks.

share|improve this question

1 Answer

up vote 5 down vote accepted

The Graph API is very easy to use and you dont need any authentication so I really can't see any reason not to use it.

Just do a simple HTTP get to the follow URL: https://graph.facebook.com/norwegianmafia

(replace "norwegianmafia" with your page name)

You could also easily use this method in jQuery:

$.getJSON("https://graph.facebook.com/norwegianmafia?callback=?", function(data) { 
alert("Likes: " + data.likes); 
});
share|improve this answer
+1 there are no fans now. only likes. – naveen Aug 26 '11 at 12:42
hm true didn't see that, but I guess fans=likes? – Muttok Aug 26 '11 at 13:22
yep. thats why the +1 – naveen Aug 26 '11 at 14:51
thx, just what I was looking for :) – william May 7 at 13:54

Your Answer

 
discard

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

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