I try to get the newest posts/news by friends (status updates, new picture posts, etc.)
I'm using the following method, but it also returns news of user-liked pages/movies, etc. - I only want to get the news of friends.
SELECT post_id, actor_id, message FROM stream WHERE filter_key in (SELECT filter_key FROM stream_filter WHERE uid=me() AND type='newsfeed') AND is_hidden = 0 LIMIT 50
Has anyone an idea how I can do it?