doufei1988 2018-02-02 11:12
浏览 48
已采纳

Facebook Graph API只能获得没有共享帖子的帖子

I'm new to the Facebook API with PHP, and so far, I've succeeded in retrieving all the posts for my feed. But, I want to retrieve only the posts I have published, so nothing I have shared (that's what's included when I use the /posts) nor do I want messages placed on my feed by someone else (that's what I get using /feed)

Below an example of my call:

$data  = file_get_contents("https://graph.facebook.com/$page_name/posts?limit=$limit&access_token=$access_token");

Any thoughts on this? Should I be using the facebook PHP SDK, or can it be done with a file_get_contents?

I have tried the "&with=" location filter, but I have no idea what that should do. Also I have tried adding "?filter=" app_$app_id, but that had no effect either.

  • 写回答

1条回答 默认 最新

  • duanbei7035 2018-02-02 15:39
    关注

    As per CBroe's comment, this is not possible and needs additional code.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?