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.

Scenario: I'm looking to track the "like counts" for 100's to 1,000's of facebook pages. Currently I have a google spreadsheet that is setup with graph api that this post mentions.

I'm looking to automate the process a bit more if possible.

Here are my current steps:

  1. find the fb business page address https://facebook.com/businessnamehere
  2. locate the fb page id and enter it in the worksheet
  3. the # of fans is populated for businesses that allow access through graph api

Couple Issues:

  1. Some business pages block access to the basic info and the following error is given:

    { "error": { "message": "Unsupported get request.", "type": "GraphMethodException", "code": 100 } }

    Is there any other way to pull the "like count" besides pulling up the actual fb business page and viewing the "like count"?

  2. The worksheet only pulls from the Page ID.

    Is there any way to pull the "like count" from the facebook url only without needing to gather the fb page id?

Any help would be appreciated. Thanks.

share|improve this question
You can use the username or businessname used after 'facebook.com/' on Graph api to retrieve the Page's likes – Anvesh Saxena Oct 1 '12 at 12:36
Thanks Anvesh. I understand how to locate the page likes using the graph api. I was looking for answers to my 2 Issues listed in the post. – Kelli Pi Oct 2 '12 at 20:17
Could you provide a example of Facebook page with your first problem? – Anvesh Saxena Oct 3 '12 at 7:18
facebook.com/SouthCoastWinery – Kelli Pi Oct 3 '12 at 17:42
There are pages which might have geographical restrictions or age restrictions or even be locked viewable only to administrator, maybe this is the root cause of your problem (Stated here in introduction). Can you view the page as yourself or publicly? – Anvesh Saxena Oct 4 '12 at 5:11
show 2 more comments

1 Answer

There are pages which might have geographical restrictions or age restrictions or even be locked viewable only to administrator, maybe this is the root cause of your problem (Stated here in introduction).

As for your second question, you can do graph request with the name on the business listed after "facebook.com/". For example you can find likes on facebook.com/ign using

$info = $facebook->api('/ign','GET'); 
$likes = $info['likes'];

instead of using page ID as

$info = $facebook->api('/59685491632','GET'); 
$likes = $info['likes']; 

where 59685491632 is IGN's page ID.

share|improve this answer

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.