Get all of a user's likes (all of them) with FQL

前端 未结 3 1113
不知归路
不知归路 2020-12-08 12:19

I\'m trying to get ALL of a user\'s likes with FQL. Following is my research including what I\'ve tried and the problems with each attempt.

1) The most simple method

3条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-08 12:31

    Try this FQL query:

    SELECT user_id, object_id, post_id, object_type 
    FROM like 
    WHERE user_id = me()
    

提交回复
热议问题