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 currently working on a cool project that include some Facebook api integration. I'm working with Facebook's php sdk via FQL.

I manage to get all posts from a user's stream with the following FQL string:

"SELECT post_id, likes FROM stream WHERE source_id = me()";

But here's my question: How can I filter the result I get to include only posts where a specific friend of mine added a like?

I tried this:

"SELECT post_id, likes FROM stream WHERE source_id = me() AND USER_ID IN likes";

But it didn't worked. Any good ideas?

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.