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?