Facebook API - “All my likes” query

后端 未结 3 745
耶瑟儿~
耶瑟儿~ 2021-02-09 01:42

Is it possible to retrieve all the posts, user ever \'liked\'?

FQL? API? I could not find a way. FB gurus out there, your help would be appreciated.

3条回答
  •  北海茫月
    2021-02-09 02:00

    I was trying to find out the videos (Youtube and Howcast) that either I liked or posted or shared. Here is the FQL, see if it can be useful to someone:

    fql?q=SELECT post_id, actor_id, target_id, message, attachment, permalink, likes
          FROM stream
          WHERE filter_key in ('other', 'owner')
            AND is_hidden = 0 AND (attachment.caption = 'www.youtube.com'
            oR attachment.caption = 'www.howcast.com' )
    

提交回复
热议问题