如何使用restfb从包含某些文本的facebook上的我的新闻源中获取帖子

时间:2013-04-02 17:57:06

标签: android facebook facebook-graph-api restfb android-facebook

你好我的任务很直接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"));

1 个答案:

答案 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