I created a custom Facebook FriendLists with restFB:
facebookClient.publish("me/friendlists", FacebookType.class, Parameter.with("name", "demoList"));
And added members to this list.
I want to query Facebook updates of only these members in my application. Is there any way to do this?
I can login to my Facebook page go to "demoList" custom friend list and get this information but is there any way to do this data through Facebook API.
I tried using FQL Stream table:
select message from stream where filter_key = 'fl_986148598189'
It works but only gives me 10-12 results. How can I get more results? Also, is there any way to do this through graph api instead of of FQL. FQL has too many bugs so trying to avoid it.