0

嗨,我的任务非常直接:
我想查询我的新闻提要中包含的所有帖子(从过去 24 小时开始),其中包含“nice”一词。
我正在使用 restFB 客户端。
我试过这个:(使用 Graph API)

Connection<Post> targetedSearch = facebookClient.fetchConnection(
        "me/home?q=facebook", Post.class, Parameter.with("q", "nice"),
        Parameter.with("type", "post"));
4

1 回答 1

0

这是我能找到的最好的答案是从这里,正在使用 FQL

SELECT post_id, app_id, source_id, updated_time, filter_key, attribution, message, action_links, likes, permalink FROM stream WHERE filter_key ="nf" and strpos(lower(message),lower("nice")) > 0
于 2013-04-03T14:10:22.320 回答