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