I am trying to get the user's feed using FQL. I use the following statement (bring video posts):
SELECT created_time, post_id, actor_id, message, attachment, likes.count, likes.friends,
comments.count FROM stream WHERE filter_key in (SELECT filter_key FROM stream_filter WHERE
uid=me() AND type='newsfeed') AND is_hidden = 0 AND 'video' in attachment
I asked for the "read_stream" permission and got the user's token
MY PROBLEM: when using the "Graph API Explorer" (facebook's page) I get a post which a friend of mine "Liked" - the author of that post is not my friend.
HOWEVER, when using the access_token of my own application (not Graph API Explorer's token), I can't see that post !!
I used the "https://graph.facebook.com/me/permissions?access_token=" to check that both tokens have the same permissions.... btw, I was able to get the post using a "WHERE post_id=" - so it doesn't seem like a user permission problem as well.
ANY IDEA???? I AM STUCK HERE!!!
PLS...................................