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.