facebook graph API endpoint for getting “likes, shares, comments” for post(s)

后端 未结 4 1646
长情又很酷
长情又很酷 2021-01-31 19:26

Facebook is planning to drop support for FQL after V2.0 https://developers.facebook.com/docs/apps/changelog/#v2_0_fql

The below task could be done easily with FQL

4条回答
  •  抹茶落季
    2021-01-31 19:34

    Get likes, comments and shares and all 3 combined.

    Check my ans : https://stackoverflow.com/a/36997725/2439715

    Improved version ( add limit(0) to removes list of likes and get only summary ):

    114916098537132_1265715836790480?fields=shares,likes.limit(0).summary(true),comments.limit(0).summary(true)
    

提交回复
热议问题