We are trying to fetch posts which have 2 keywords (e.g. Chicago Sports) via the RestFB query interface. Its able to fetch posts from a certain account, but for some weird reason it skips the messages from a different account even though both of the messages have been marked as Public.
What could be the reason that its unable to fetch data from a certain account. Note: I am using account1's credentials to perform a search and the posts 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 resolving this issue.