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.

I needed to pull the fan count for particular fan pages on Facebook. After digging through the API, I couldn't find a way to do this with the API "proper." Instead I fell back to a FQL query, and it worked quite well.

select fan_count from page where page_id = <FAN_PAGE_ID>

What did I miss about the Facebook API. Is this the only way to capture a fan count for a page? In general, how often do you use FQL for your requests as opposed to the exposed API methods?

share|improve this question
1  
Sweet, my first Tumbleweed badge. – Ryan McGeary Dec 18 '09 at 22:29
2  
I've noticed the TumbleWeeds show up when asking facebook api questions. – Jack Marchetti Mar 29 '10 at 15:51
1  
Yeah, the tumbleweeds blow all the way over to the Facebook Developer forums. – typeoneerror Jun 18 '10 at 2:19

1 Answer

up vote 10 down vote accepted

https://graph.facebook.com/cocacola

"fan_count" property. replace cocacola with your fan page's ID.

Please note that this property is being changed to "likes" in the November 2010 Roundup migration:

Graph API: The fan_count attribute on the Page object will be renamed to likes.

You can opt in to the November Roundup in your application's advanced settings page.

share|improve this answer
1  
Thanks. It required Facebook to build a whole new API to support answering this question ;-) – Ryan McGeary Jun 18 '10 at 21:47
This is quite cool - thanks. – Banago Nov 19 '11 at 15:36

protected by Community Sep 15 '11 at 17:11

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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