嗨,我的任务非常直接:
我想查询我的新闻提要中包含的所有帖子(从过去 24 小时开始),其中包含“nice”一词。
我正在使用 restFB 客户端。
我试过这个:(使用 Graph API)
Connection<Post> targetedSearch = facebookClient.fetchConnection(
"me/home?q=facebook", Post.class, Parameter.with("q", "nice"),
Parameter.with("type", "post"));