1

I want to get all user ids from the people that likes a page's post. In the particular example the likes are ~22k. However I can only get the first 1000.

With the following I get data:

SELECT user_id
FROM   like
WHERE  object_id = [ID]
LIMIT  1000
OFFSET 1

But not with this one:

SELECT user_id
FROM   like
WHERE  object_id = [ID]
LIMIT  1000
OFFSET 1001 

So I guess the limitation of total id per post is 1000 and the only option is through Graph Api to get all the ids?

4

1 回答 1

0

你可以试试下面

从 post_id='ID' 的流中选择 like_info

其中 ID 是 Post 的 ID

于 2013-10-10T15:07:31.893 回答