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 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...................................

share|improve this question
Has your friend authorised the graph api explorer? have both apps got the same settings for migrations? (i guess you can't check this for graph api explorer, but for your app and a second app you can) – Igy Jul 3 '12 at 16:56
my friend is not using the graph api and didn't authorize it. what does migration settings on my application has to do with it? my app is using the default settings there. should I change something? – ilazar Jul 3 '12 at 16:59

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.