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'm using the Facebook php sdk to try to get posts of a users wall.

When I use the following code I only get some reaction on events and some mentions, but but not the messages, photos's etc. I actually posted on my wall?

What can be the problem?

$result = $facebook->api('/me/feed/',array('access_token' => $facebook->access_token,'limit'=>100));
share|improve this question

1 Answer

up vote 1 down vote accepted

How are you authenticating and what permissions are you asking for in your access_token? If you aren't authenticating your user, you'll be limited to public posts only. You also need to make sure you request read_stream permission when you authenticate your user.

share|improve this answer
It was the read_stream i forgot, thanks – waterschaats Aug 8 '12 at 9:04
Don't forget to mark this as resolved. – cpilko Aug 8 '12 at 11:12

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.