0

嗨,我的任務非常直接fw:
我想查詢我的新聞源,查看它包含的所有帖子(從最近24小時)字「很好」在他們中。
我正在使用restFB客戶端。
我嘗試這樣做:(使用Graph API)如何從我在Facebook上的新聞源中獲取包含使用restfb的某些文本的帖子

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

回答

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 
最佳答案
相關問題