List of people who shared on facebook

前端 未结 5 866
误落风尘
误落风尘 2020-12-02 14:02

I\'ve been scouring the docs for a while now and can\'t seem to find a way to accomplish this. The information is available publicly (on a facebook page ... the link says \"

5条回答
  •  盖世英雄少女心
    2020-12-02 14:07

    I think you can get the share_count from stream table by FQL query just like

    
    SELECT type, source_id, share_count, permalink, description, post_id, actor_id, target_id, message , share_count 
    FROM stream
    WHERE filter_key = 'others' and post_id = '87236249496_134765166623967'
    
    

    you can test it https://developers.facebook.com/tools/explorer/

    Note: you have to take the read_stream permissions as explained here

提交回复
热议问题