I am trying to create a Facebook app that needs to read the users News feed. In my app I use:
https://graph.facebook.com/me/feed?access_token=XXXXXXXXXXX
I get 2 different results when I go to the direct link and via the app. I know that this is du to the permissions on my posts. My question is, what permission do i need to add in the App->Settings->Permissions so that the app will have full access to the feed posts?
I am using the PHP SDK if that changes anything. I call Graph like so:
$feed = $facebook->api('/me/feed', array('access_token' => $facebook->getAccessToken(),'limit'=>200));
Thank you, and sorry for the noob question, I'm new to Facebook apps.
read_streampermission? – ifaour Oct 17 '12 at 21:28publish_stream read_stream & export_streamjust to sure – Dvir Levy Oct 17 '12 at 21:33access_tokento your api call as the PHP-SDK will add it for you. – ifaour Oct 17 '12 at 22:13