1
https://graph.facebook.com/me/home?access_token=token

将返回用户新闻提要的所有提要。但我正在寻找 type=post 或 type=photos 等过滤器

facebook api中是否提供此功能?

4

3 回答 3

4

您可以使用参数过滤由用户的流过滤器过滤的home连接结果。例如,可以通过以下方式访问照片:userfilter

https://graph.facebook.com/me/home?filter=app_2305272732

和链接:

https://graph.facebook.com/me/home?filter=app_2309869772

filter应该是下一个 FQL 查询返回的那些之一:

SELECT filter_key FROM stream_filter WHERE uid=me()

详见stream_filter表格。

顺便说一句:当心,并非所有东西都可以用作过滤器,例如状态(那些/me/statuses比 via更容易访问的状态/me/home)......

于 2012-05-12T15:45:30.790 回答
1

我找不到它的文档,但我只是尝试了以下网址并且它有效:

https://graph.facebook.com/me/home/photos?access_token=token
于 2012-05-12T12:10:54.737 回答
0

对于fql任何想要使用. 这是我使用的查询。

SELECT actor_id, created_time, likes, post_id, attachment FROM stream WHERE filter_key IN ( SELECT filter_key FROM stream_filter WHERE uid = me() AND (name = "Photos" OR name = "Video"))
于 2013-01-03T09:52:23.610 回答