We are trying to find posts that have 2 keywords (e.g. Chicago Sports) through the RestFB query interface. Its ability to collect messages from a specific account, but for some strange reason, skips messages from another account, even if both messages are marked as Public.
What could be the reason that he cannot get data from a specific account. Note. I use account1 credentials to do the search, and the messages are present in account2, account3.
Connection<Post> messages = fbClient.fetchConnection("search",
Post.class,
Parameter.with("q", keyword),
Parameter.with("limit", limit),
Parameter.with("type", "post"));
Appreciate your help in solving this problem.
user899876
source
share