Retrieve Facebook Fan Names

前端 未结 6 788
感动是毒
感动是毒 2020-11-27 17:52

I\'m trying to grab the names of fans of a Facebook fan page that I administer. I\'ve done some snooping around, and apparently, the FB API doesn\'t support that, but Facebo

相关标签:
6条回答
  • 2020-11-27 17:59

    That one worked

    SELECT user_id FROM like WHERE object_id="YOUR PAGE ID"
    
    0 讨论(0)
  • 2020-11-27 18:04
    SELECT first_name, last_name FROM user WHERE uid IN (SELECT uid FROM page_fan WHERE page_id = [your page id])
    

    This should work, but I get an error trying to run this through the .net facebook api...something about the where clause not being on an indexable column, which it is.

    Perhaps give that a try on your platform.

    0 讨论(0)
  • 2020-11-27 18:09

    If you have less than 500 fans, you can use the following url:

    http://www.facebook.com/browse/?type=page_fans&page_id=13207908137&start=400

    Each page will give you 100 fans. Change &start to (0, 100, 200, 300, 400) to get the first 500. If &start is >= 401, the page will be blank :(

    0 讨论(0)
  • 2020-11-27 18:15

    At the current time the FQL schema would suggest that there is no way to get a collection of FANS for any given PAGE. I think they are hiding this information because they display the FANS on the page... One would think that at least the ADMIN would have privileges to see the list of users.

    Anyway... I hope someone make is possible in the near future.

    0 讨论(0)
  • 2020-11-27 18:20

    can you please try this and let me know :

    select uid,name from user where uid in ( select uid from page_fan where uid in (select uid2 from friend where uid1 = me()) and page_id = 'Your Page Id')
    

    I think you can get it only for the currently logged in user and his / her friends only.

    0 讨论(0)
  • 2020-11-27 18:22

    I found that in the doc: http://developers.facebook.com/docs/reference/fql/page_fan/

    uid - "The user ID who has liked the Page being queried."

    0 讨论(0)
提交回复
热议问题