I'm trying to find out how to retrieve posts from stream table like the ones in "Close Friends" friends list (where besides regular activity there are posts on close friends likes and comments).
I tried the following queries:
With filter_key - returned partial posts relative to "Close Friends" posts:
select [LIST_OF_FIELDS] from stream where is_hidden=0 and filter_key in (select filter_key from stream_filter where uid=me()) and source_id = [SPECIFIC_FRIEND_ID]
Without filter_key - result was basically queried friend's wall:
select [LIST_OF_FIELDS] from stream where is_hidden=0 and source_id = [SPECIFIC_FRIEND_ID]
With "Close Friends" filter_key - returned partial posts from "Close Friends" posts:
select [LIST_OF_FIELDS] from stream where is_hidden=0 and filter_key='[CLOSE_FRIENDS_LIST_FILTER_KEY]' and source_id = [SPECIFIC_FRIEND_ID]
I also tried using open graph api the following way:
Using "Close friends" filter - returned partial posts from "Close Friends" posts:
me/home?filter=[CLOSE_FRIENDS_LIST_FILTER_KEY]
Using ids filter on feed - result was basically queried friend's wall:
feed?ids=[SPECIFIC_FRIEND_ID]
I also tried several variations like querying on actor_id, adding limit, querying on created_time etc. but always results were incomplete relative to posts shown in "Close Friends".
I use the "Close Friends" list as a reference, hopefully I want to avoid having to add users to this list for getting complete results.
Is there a correct way to do this?
Thanks