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 RestFB to get user's wall feed and ran into an issue that only posts by current user is returned. Is this a bug or am I doing something wrong? The exact same query works in Facebook API Explorer so I'm not quite sure what's wrong.

Connection<Post> rPosts = fbClient.fetchConnection("me/feed", Post.class);

I have tried with both version 1.6.09 and 1.6.10 with the same results.

Thanks, Jack

share|improve this question
1  
Are the permission sets equivalent? Check with a call to /me/permissions with the two access tokens you're using – Igy Sep 6 '12 at 18:57

1 Answer

up vote 2 down vote accepted

As Igy mentioned above, this was related to permission issue. In Facebook Explorer, all basic permissions are set, but in my application, it was missing permissions on friends. I thought it wasn't required since it's user wall, but I guess not.

share|improve this answer

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.