Hi my task is very straight fw:
I want to query my newsfeed for all the posts it contains(from the last 24 hrs), that has the word "nice" in them.
I am using restFB client.
I tried this: (using Graph API)
Connection<Post> targetedSearch = facebookClient.fetchConnection(
"me/home?q=facebook", Post.class, Parameter.with("q", "nice"),
Parameter.with("type", "post"));