Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.