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 use restfb to fetch my users' Facebook posts. But I have a problem while fetching, getPrivacy method always return null. Is there anyone that know the solution?

The codes I use:

FacebookClient fbClient = new DefaultFacebookClient(APP_ACCESS_TOKEN);
Connection<Post> feed = fbClient.fetchConnection(USER_FB_ID + "/feed", Post.class);

for (List<Post> page : feed){
    for (Post post : page){
        post.getPrivacy(); // returns null
    }
}

Thanks

Edit : I found a solution that solves my problem for now. by changing APP_ACCESS_TOKEN to USER_ACCESS_TOKEN and changing USER_FB_ID to "me" string. But I still want to use APP_ACCESS_TOKEN. If there is a solution for that, I will wait for your answers. Thanks

share|improve this question

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.