Can't get all the users in a Facebook group using FQL

后端 未结 1 1664
孤城傲影
孤城傲影 2021-01-15 00:57

I\'m trying to get the name of every user in a Facebook group using this FQL query:

select first_name,last_name from user where uid in (select uid fro

相关标签:
1条回答
  • 2021-01-15 01:10

    From Facebook's blog post on How-To: Paging with the Graph API and FQL:

    In addition to the limits mentioned in the documentation for each of the tables and connections listed above, it is helpful to know that the maximum number of results we will fetch before running the visibility checks is 5,000.

    So, this means that Facebook will only fetch AT THE MAX 5,000 results, that too before the visibility check. That means the number of results that you'll obtain cannot exceed the limit!

    Here's how visibility check works on the results (copied from the blog post):

    enter image description here

    NOTE: The blog article is a bit old, but I'm sure that it applies to FQL v1.0.

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