使用Restfb,我试图从某个页面检索所有帖子。我遇到的问题是有些帖子为其内容返回null,但在facebook.com上不为null。这些null的帖子包含富文本,特别是BOLD标题。
我必须连接到页面并获得帖子的代码是:
Connection<Post> detailedPosts = facebookClient.fetchConnection(
"#############/feed", Post.class);
使用以下内容将其作为列表。
List<Post> posts2 = detailedPosts.getData();