Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering if it was possible to query the following:

  • List of (all) users who like my facebook page, and
  • Additional information those users have made publicly available (beyond first and last name)

Basically looking to generate detailed marketing stats of users who like my facebook page, if possible. Any suggestions or alternatives welcome.

Thank you.

share|improve this question

4 Answers

up vote 20 down vote accepted

I am afraid this is NOT possible, follow this bug for more information.

Another proof is the page_fan table you will notice that only the uid field is indexable so you need to know the user id to search it and not the page_id, as you know if a user "likes" a page this would mean he is a "fan" of that page.


After being actively working with the Facebook API for a while now, and following the announcements and API releases (and deprecations) along with the introduction and changes of policies, I can understand that Facebook will only share info about their users by letting them explicitly do so (a.k.a interact/authorize your Apps).

And hence the best thing to do in the absence of such feature is:

  1. Understand your audience through Page Insights
  2. Collect fans interests & info by creating custom apps through Page Tabs and using other Facebook features like Questions
share|improve this answer
1  
I agree that this is not possible. I've tried every possible permutation of api calls, permissions, access tokens etc that might possibly provide you with a list of a page's fans/likes over the past couple days with no success. Anyone who says they are able to do this either hasn't actually tried it or must have somehow lucked in to a beta test of the ability as described in your link to the bug page. – B_. Mar 4 '11 at 1:45
5  
The new URL to this bug is developers.facebook.com/bugs/147185208750426 – Philihp Busby Aug 22 '12 at 4:47

Alright, nobody wants to break Facebook's TOS but they have tied our hands on our own basic data. So, scraping is illegal, but not saving a page. What I have done (and note that I needed this for offline purpose anyway): Go to https://www.facebook.com/browse/?type=page_fans&page_id={FAN PAGE ID} Scroll down until you have all of your fans. Save this page on your local machine, let's say, Facebook.html. Now, using ruby and nokogiri:

require 'nokogiri'
>true
f = File.open('/your_path/Facebook.html')
doc = Nokogiri::HTML.parse(f.read)
doc.xpath('//div[@class="fsl fwb fcb"]/a').each {|link| puts link.content}
share|improve this answer

It's possible, just not with FQL anymore.

Do a GET of https://www.facebook.com/browse/?type=page_fans&page_id={FAN PAGE ID} and scrape out the users.

Viola.

share|improve this answer
5  
You shouldn't really advocate breaking Facebook's TOS by scraping the site – Igy May 4 '12 at 19:17

You can get it using facebook open graph.

https://graph.facebook.com/<your-page-name-or-page-id>/likes

For example :

https://graph.facebook.com/chickfila/likes

You need to send graph api call using "id" for more detail about user who like you page.

However, this call will retrieve the other Facebook objects that the page (Chickfila) has liked, NOT the users who have liked the Chickfila page.

share|improve this answer
9  
that gets the things that chickfila likes; not who likes chickfila. – Philihp Busby Aug 22 '12 at 4:33
Yeah, you are right. But we get user_id which is used for get name – Rajesh Meniya Oct 13 '12 at 6:46

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.