Well i got alot of posts in my stream but when i do:
SELECT type,source_id,actor_id,post_id,type,attachment,message,permalink,description,created_time FROM stream WHERE source_id = xxx ORDER BY created_time DESC limit 15
it only returns 7 rows… it shouldn’t returns 15 rows?
someone could explain it for me?
thanks.
With
streamFQL queries, Facebook first finds all the posts that match your query, then filters these results for those that are publicly viewable before passing them to the API.In your case, Facebook is finding 15 queries, but 8 of them are not viewable by your authorization token, so only 7 get returned.