你好我的任务很直接fw:
我想查询我的新闻源所包含的所有帖子(从过去24小时开始),其中包含“nice”字样。
我正在使用restFB客户端
我试过这个:(使用Graph API)
Connection<Post> targetedSearch = facebookClient.fetchConnection(
"me/home?q=facebook", Post.class, Parameter.with("q", "nice"),
Parameter.with("type", "post"));
答案 0 :(得分:0)
这是我能找到的最好的答案来自here,正在使用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