Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
do you have the read_stream permission? – ifaour Oct 17 '12 at 21:28
yes, I have publish_stream read_stream & export_stream just to sure – Dvir Levy Oct 17 '12 at 21:33
Then I guess this is the most you can get, please refer to this post. Some posts on your wall may not be accessible by your app depending on privacy settings, I assume. – ifaour Oct 17 '12 at 22:12
P.S.: you don't need to manually include the access_token to your api call as the PHP-SDK will add it for you. – ifaour Oct 17 '12 at 22:13
When you say "different results", how many different results? Also, you are missing limit=200 in the direct URL, which could explain it. When I try it on my test user, I get 84 feed stories for both 'direct' URL and $facebook->api() – Donn Lee Oct 17 '12 at 22:31
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.