开发者

Facebook Graph Api new feed filter

开发者 https://www.devze.com 2023-03-26 09:01 出处:网络
Calling graph.facebook.com/me/home and it\'s returnin开发者_如何学Cg valid results. However, it\'s not the same as the one I have on facebook. Since my main feed is being filtered by the people I int

Calling graph.facebook.com/me/home and it's returnin开发者_如何学Cg valid results.

However, it's not the same as the one I have on facebook. Since my main feed is being filtered by the people I interact with most.

What I'm asking is if there is a way to get the same filtering on this feed.


Use an FQL query on stream with a stream_filter: http://developers.facebook.com/docs/reference/fql/stream/

SELECT post_id, actor_id, target_id, message
FROM stream
WHERE filter_key in (
    SELECT filter_key FROM stream_filter WHERE uid=me() AND type='newsfeed'
)
AND is_hidden = 0

The is_hidden doesn't seem to make and difference though. Also, read this: http://forum.developers.facebook.net/viewtopic.php?id=45819

0

精彩评论

暂无评论...
验证码 换一张
取 消